/* BASIC RESET & TYPOGRAPHY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #fafafa;
  color: #333;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* NAVIGATION & HERO */
.hero {
  background: #fff;
  padding-bottom: 40px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-logo a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0073e6;
}

.hero-content {
  text-align: center;
  padding-top: 60px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.tagline {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

/* SECTION */
.section {
  background-color: #fff;
  margin-bottom: 40px;
  border-radius: 8px;
  padding: 40px 20px;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #222;
}

.section p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.section ul {
  margin-left: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.section-text {
  flex: 1 1 400px;
}

.section-image {
  flex: 1 1 400px;
  text-align: center;
}

.section-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
}

/* BUTTON */
.button {
  display: inline-block;
  padding: 14px 24px;
  background: #0073e6;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 20px;
}

.button:hover {
  background: #005bb5;
}

/* FOOTER */
.footer {
  background-color: #f8f8f8;
  text-align: center;
  padding: 20px 0;
}

.footer p {
  margin-bottom: 5px;
  color: #666;
}

.footer small a {
  color: #0073e6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
  }

  .section-text,
  .section-image {
    flex: 1 1 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}