:root {
  --primary-color: #2d7a3e;
  --primary-dark: #1f5a2d;
  --secondary-color: #f8f9fa;
  --accent-color: #4caf50;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --border-color: #dee2e6;
  --white: #ffffff;
  --success: #28a745;
  --danger: #dc3545;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.brand-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.navbar {
  border-bottom: 1px solid var(--border-color);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 62, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 600px;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-light);
}

.benefit-card,
.daily-card,
.who-card,
.tip-card,
.principle-card,
.next-step-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.benefit-card:hover,
.daily-card:hover,
.who-card:hover,
.tip-card:hover,
.principle-card:hover,
.next-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.benefit-icon,
.principle-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-title,
.daily-title,
.who-title,
.tip-title,
.principle-title,
.next-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ingredient-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ingredient-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: 1rem 1.5rem 0.5rem;
  margin: 0;
}

.ingredient-description {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-light);
}

.tip-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--text-light);
  margin-bottom: 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  padding: 4rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(45, 122, 62, 0.3);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.cta-disclaimer {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer {
  border-top: 1px solid var(--border-color);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.page-header {
  padding: 4rem 0;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

.contact-info-card {
  background: var(--secondary-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.contact-info-text {
  color: var(--text-dark);
  margin-bottom: 0;
}

.contact-info-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-text a:hover {
  text-decoration: underline;
}

.map-placeholder {
  background: var(--secondary-color);
  border: 2px dashed var(--border-color);
  border-radius: 8px;
  padding: 4rem 2rem;
  text-align: center;
}

.thank-you-section {
  padding: 5rem 0;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  margin: 0 auto;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.thank-you-text {
  color: var(--text-dark);
}

.thank-you-note {
  background: var(--secondary-color);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 8px;
  color: var(--text-light);
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.policy-info {
  background: var(--secondary-color);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 8px;
}

.cookie-type-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.disclaimer-box {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 0;
  color: var(--text-dark);
}

.cookie-banner a {
  color: var(--primary-color);
  text-decoration: underline;
}

.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list strong {
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-image {
    height: 400px;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-image {
    height: 300px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .btn-primary {
    padding: 0.5rem 1.5rem;
  }
}
