:root {
  --primary-pistachio: #B2D8B2;
  --accent-coral: #F4A261;
  --accent-indigo: #4A6FA5;
  --accent-beige: #EDE4D9;
  --white: #FFFFFF;
  --dark-gray: #2C2C2C;
  --light-gray: #F5F5F5;
  --medium-gray: #888888;
}

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

html {
  scroll-behavior: smooth;
}

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

h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

p {
  margin-bottom: 1.5rem;
  font-weight: 400;
}

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

a:hover {
  color: var(--accent-coral);
}

header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  border-bottom: 1px solid #E0E0E0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--dark-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo:hover {
  color: var(--accent-pistachio);
}

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

.nav-menu a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-indigo);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-gray);
}

section {
  padding: 110px 2rem;
  max-width: 1520px;
  margin: 0 auto;
}

.content-container {
  max-width: 1180px;
  margin: 0 auto;
}

.hero-section {
  background-color: var(--light-gray);
  padding: 0;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 600px;
}

.hero-text {
  padding: 6rem 3rem;
  background-color: var(--white);
}

.hero-text h1 {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-weight: 300;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.hero-image {
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-alt {
  background-color: var(--accent-beige);
}

.section-pistachio {
  background-color: var(--primary-pistachio);
}

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

.card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 2rem;
}

.card-content h3 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.card-content p {
  margin-bottom: 1.5rem;
}

.cta-link {
  color: var(--accent-indigo);
  font-weight: 600;
  display: inline-block;
  transition: color 0.3s ease;
}

.cta-link:hover {
  color: var(--accent-coral);
}

.side-by-side {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.side-by-side.reverse {
  grid-template-columns: 55% 45%;
}

.side-by-side img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  background-color: var(--accent-beige);
  padding: 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--accent-coral);
  color: var(--white);
}

.faq-answer {
  padding: 1.5rem;
  background-color: var(--light-gray);
  border-radius: 0 0 8px 8px;
  display: none;
  margin-top: -8px;
}

.faq-answer.active {
  display: block;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #CCCCCC;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-coral);
}

.footer-bottom {
  border-top: 1px solid #444444;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #AAAAAA;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-indigo);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

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

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--accent-indigo);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background-color: var(--accent-coral);
  transform: scale(1.03);
}

.disclaimer {
  background-color: var(--accent-beige);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-coral);
  margin: 2rem 0;
  font-size: 0.95rem;
}

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

.blog-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  margin-bottom: 0.75rem;
}

.blog-card-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

.cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-content {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-content a {
  color: var(--accent-coral);
}

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

.cookie-buttons button {
  padding: 0.5rem 1rem;
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.cookie-buttons button.accept {
  background-color: var(--accent-coral);
  border-color: var(--accent-coral);
}

.cookie-buttons button:hover {
  background-color: var(--accent-indigo);
  border-color: var(--accent-indigo);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  section {
    padding: 60px 1.5rem;
  }

  .navbar {
    padding: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--white);
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    border-bottom: 1px solid #E0E0E0;
    padding: 0.5rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    padding: 3rem 1.5rem;
  }

  .hero-image {
    min-height: 300px;
  }

  .cards-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .side-by-side,
  .side-by-side.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
  }

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

  .cookie-buttons button {
    flex: 1;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  body {
    font-size: 16px;
  }

  section {
    padding: 50px 1rem;
  }

  .navbar {
    padding: 0.75rem 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }

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