/* styles.css */

/* GLOBAL STYLES */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #2c2c2c;
}

header {
  background-color: #1f2937;
  padding: 1rem 0;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar .logo {
  height: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #f9fafb;
  text-decoration: none;
  font-weight: bold;
}

.nav-links li a:hover {
  color: #fbbf24; /* Soft gold tone from logo */
}

.container {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.hero {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.hero h1 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #4b5563;
}

.highlight {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.highlight h2 {
  color: #1f2937;
  margin-bottom: 1rem;
}

.highlight ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

.highlight ul li::before {
  content: "✔ ";
  color: #fbbf24;
  font-weight: bold;
}

.cta {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
}

.cta h3 {
  font-size: 1.75rem;
  color: #1f2937;
}

.cta a {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 500;
}

.cta a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1f2937;
  color: #f9fafb;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .highlight h2,
  .cta h3 {
    font-size: 1.5rem;
  }
}
