:root {
  --crisp-city-blue: #5A7D9A;
  --fresh-mint: #98D4BB;
  --warm-sand: #EDE0D4;
  --deep-graphite: #333F48;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.82;
  color: var(--deep-graphite);
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 600;
}

h1 {
  font-size: 4.9rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
}

h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--fresh-mint);
  margin-top: 1rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: var(--crisp-city-blue);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.container-custom {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 1.25rem 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

header .logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--crisp-city-blue);
  text-decoration: none;
  letter-spacing: 0.02em;
}

header nav a {
  color: var(--deep-graphite);
  text-decoration: none;
  margin-left: 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: var(--crisp-city-blue);
}

.hero-section {
  height: 90vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(90, 125, 154, 0.85) 0%, rgba(51, 63, 72, 0.75) 100%);
  z-index: 1;
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 55%;
  padding-left: 5%;
}

.hero-content h1 {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.btn-primary-custom {
  background: var(--fresh-mint);
  color: var(--deep-graphite);
  padding: 0.95rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(152, 212, 187, 0.3);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary-custom:hover {
  transform: scale(1.06);
  background: var(--crisp-city-blue);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(90, 125, 154, 0.4);
  text-decoration: none;
}

.section-standard {
  padding: 5rem 0;
}

.section-light {
  background: var(--light-gray);
}

.section-image {
  width: 100%;
  max-width: 85%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  margin: 2rem 0;
}

.card-custom {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-top: 4px solid var(--crisp-city-blue);
  transition: all 0.4s ease;
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.card-custom:hover h3 {
  color: var(--fresh-mint);
}

.blog-card {
  text-decoration: none;
  display: block;
  color: inherit;
}

.blog-card:hover {
  text-decoration: none;
}

.disclaimer-box {
  background: var(--warm-sand);
  border-left: 4px solid var(--crisp-city-blue);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: var(--crisp-city-blue);
  margin-bottom: 1rem;
}

footer {
  background: var(--deep-graphite);
  color: var(--white);
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

footer h4 {
  color: var(--fresh-mint);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--fresh-mint);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.75rem;
}

.education-notice {
  background: var(--crisp-city-blue);
  color: var(--white);
  padding: 1rem 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(51, 63, 72, 0.98);
  color: var(--white);
  padding: 1.5rem;
  z-index: 2000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cookie-banner button {
  margin-right: 1rem;
  padding: 0.7rem 1.75rem;
  border-radius: 25px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--fresh-mint);
  color: var(--deep-graphite);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-learn {
  background: transparent;
  color: var(--fresh-mint);
  text-decoration: underline;
}

.form-control {
  border-radius: 8px;
  padding: 0.85rem;
  border: 2px solid #E0E0E0;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--crisp-city-blue);
  box-shadow: 0 0 0 0.2rem rgba(90, 125, 154, 0.25);
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h3 {
  color: var(--crisp-city-blue);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-content {
    max-width: 90%;
    padding: 0 5%;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  header nav a {
    margin-left: 1rem;
    font-size: 0.85rem;
  }
  
  .section-standard {
    padding: 3rem 0;
  }
  
  .section-image {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  .hero-section {
    height: 70vh;
  }
  
  header nav {
    display: none;
  }
  
  .cookie-banner button {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
