@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Nunito+Sans:wght@600&family=Source+Sans+Pro:wght@400;600&display=swap');

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

:root {
  --primary-mint: #98D4BB;
  --accent-sand: #F8F1E9;
  --accent-plum: #B08EAD;
  --dark-graphite: #2F2F2F;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #E0E0E0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--dark-graphite);
  background-color: var(--white);
  line-height: 1.8;
  font-size: 18px;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--medium-gray);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-family: 'Merriweather', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-mint);
  text-decoration: none;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-graphite);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-mint);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--primary-mint);
}

main {
  margin-top: 70px;
  padding-bottom: 4rem;
}

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

.section {
  padding: 8rem 0;
  position: relative;
}

.section-alternate {
  background-color: var(--accent-sand);
}

.hero-section {
  padding: 6rem 0 8rem 0;
  background: linear-gradient(135deg, var(--accent-sand) 0%, var(--white) 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-image {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 35%;
  max-width: 500px;
  z-index: 5;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

h1 {
  font-family: 'Merriweather', serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dark-graphite);
  margin-bottom: 1rem;
  line-height: 1.2;
  max-width: 600px;
}

h2 {
  font-family: 'Merriweather', serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--dark-graphite);
  margin-bottom: 2rem;
}

h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-graphite);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 20px;
  color: var(--accent-plum);
  margin-bottom: 3rem;
  font-weight: 600;
}

.lead-text {
  font-size: 20px;
  color: var(--dark-graphite);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 650px;
}

.divider-line {
  width: 60px;
  height: 3px;
  background-color: var(--primary-mint);
  margin: 1rem 0 2rem 0;
  display: inline-block;
  animation: slideInWidth 0.6s ease;
}

@keyframes slideInWidth {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.two-column {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: 45% 55%;
}

.column-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.column-text h2 {
  margin-bottom: 1.5rem;
}

.column-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.pull-quote {
  border-left: 4px solid var(--primary-mint);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--accent-plum);
  font-size: 18px;
  margin: 2rem 0;
}

ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.8rem;
}

.three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--medium-gray);
}

.card:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 40px rgba(152, 212, 187, 0.15);
  backdrop-filter: blur(10px);
}

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-bottom: 0.8rem;
  color: var(--dark-graphite);
}

.card-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1rem;
}

.cta-link {
  color: var(--primary-mint);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-link::after {
  content: ' →';
  transition: transform 0.3s ease;
}

.cta-link:hover::after {
  transform: translateX(5px);
}

.carousel-container {
  position: relative;
  margin-top: 3rem;
}

.carousel-wrapper {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.carousel-wrapper::-webkit-scrollbar {
  height: 8px;
}

.carousel-wrapper::-webkit-scrollbar-track {
  background-color: var(--medium-gray);
  border-radius: 4px;
}

.carousel-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--primary-mint);
  border-radius: 4px;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 1.3rem);
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.fact-card {
  background-color: var(--accent-sand);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-mint);
  text-align: center;
}

.fact-card h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-plum);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.fact-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-graphite);
}

.accordion {
  margin-top: 2rem;
}

.accordion-item {
  border-bottom: 1px solid var(--medium-gray);
  margin-bottom: 0;
}

.accordion-header {
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: var(--primary-mint);
}

.accordion-header h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.accordion-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: var(--primary-mint);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding-bottom: 1.5rem;
  line-height: 1.8;
}

.accordion-item.active .accordion-content {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.closing-prompt {
  background: linear-gradient(135deg, var(--primary-mint) 0%, var(--accent-plum) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 4rem 0;
}

.closing-prompt h2 {
  color: var(--white);
  font-size: 36px;
}

.closing-prompt p {
  font-size: 18px;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Nunito Sans', sans-serif;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary-mint);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #7abf9f;
  box-shadow: 0 10px 25px rgba(152, 212, 187, 0.3);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--dark-graphite);
  border: 2px solid var(--dark-graphite);
}

.btn-secondary:hover {
  background-color: var(--light-gray);
}

footer {
  background-color: var(--dark-graphite);
  color: var(--white);
  padding: 3rem 0 1.5rem 0;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-section h3 {
  color: var(--primary-mint);
  font-size: 18px;
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-mint);
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-graphite);
  color: var(--white);
  padding: 1.5rem 2rem;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: var(--primary-mint);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background-color: #7abf9f;
}

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

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.cookie-btn-learn:hover {
  opacity: 0.8;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.policy-content h1 {
  text-align: left;
  margin-bottom: 2rem;
}

.policy-content h2 {
  font-size: 24px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.8rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: 'Nunito Sans', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--medium-gray);
  border-radius: 6px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-mint);
  box-shadow: 0 0 0 3px rgba(152, 212, 187, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-disclaimer {
  background-color: var(--accent-sand);
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid var(--primary-mint);
  margin-bottom: 2rem;
  font-size: 14px;
}

.thank-you-content {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.thank-you-content h1 {
  margin-bottom: 1rem;
}

.thank-you-content p {
  font-size: 18px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.section-title-with-image {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.section-title-with-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 12px;
}

.section-title-overlay {
  position: relative;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
}

.section-title-overlay h1 {
  color: var(--white);
  text-align: left;
}

.disclaimer-box {
  background-color: var(--accent-sand);
  border: 2px solid var(--primary-mint);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.disclaimer-box h3 {
  color: var(--accent-plum);
  margin-bottom: 1rem;
}

.disclaimer-box p {
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column.reverse {
    grid-template-columns: 1fr;
  }

  .three-column-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-item {
    flex: 0 0 calc(50% - 1rem);
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .nav-menu {
    gap: 1rem;
    font-size: 12px;
  }

  .hero-section {
    padding: 4rem 0;
    min-height: auto;
  }

  .hero-image {
    position: relative;
    right: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
    margin-top: 2rem;
  }

  .hero-content {
    text-align: left;
  }

  .section {
    padding: 3rem 0;
  }

  .three-column-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .carousel-item {
    flex: 0 0 100%;
  }

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

  .policy-content {
    padding: 1.5rem 1rem;
  }
}
