:root {
  --primary-green: #4a7c59;
  --dark-green: #3a5f46;
  --light-green: #e8f3ec;
  --text-dark: #2c3e39;
  --text-light: #6b7c76;
  --background: #ffffff;
  --light-gray: #f8f9fa;
  --border-color: #e0e6e3;
}

* {
  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(--background);
}

.site-header {
  background-color: var(--background);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

.logo {
  height: 40px;
  width: auto;
}

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

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

.hero-section {
  position: relative;
  min-height: 500px;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.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(135deg, rgba(74, 124, 89, 0.85) 0%, rgba(58, 95, 70, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-primary {
  background-color: white;
  color: var(--primary-green);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--light-green);
  color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.btn-outline-primary {
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  background-color: transparent;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

.btn-outline-secondary {
  color: var(--text-light);
  border: 2px solid var(--border-color);
  background-color: transparent;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

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

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

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

.content-section h4 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

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

.styled-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.rounded {
  border-radius: 12px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.disclaimer-text {
  background-color: var(--light-green);
  padding: 1rem;
  border-left: 4px solid var(--primary-green);
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 1rem 0;
}

.testimonial-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-gray) 100%);
}

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

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

.testimonial-author {
  font-weight: 600;
  color: var(--primary-green);
  font-style: normal;
}

.faq-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

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

.faq-item h5 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

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

.page-header p {
  font-size: 1.25rem;
  opacity: 0.95;
}

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

.product-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.2);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  color: var(--primary-green);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.ingredients-block {
  background-color: var(--light-green);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.ingredients-block h5 {
  color: var(--primary-green);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ingredients-block ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.ingredients-block li {
  color: var(--text-dark);
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

.product-usage {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0;
}

.disclaimer-box {
  background-color: var(--light-green);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-green);
}

.disclaimer-box h4 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.disclaimer-box a {
  color: var(--primary-green);
  font-weight: 600;
}

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

.value-card h4 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-info {
  background-color: var(--light-green);
  padding: 2rem;
  border-radius: 12px;
}

.contact-info h4 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.contact-info a {
  color: var(--primary-green);
  font-weight: 600;
}

.contact-hours {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-hours h4 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(74, 124, 89, 0.15);
}

.form-check-label {
  color: var(--text-light);
}

.form-check-label a {
  color: var(--primary-green);
  font-weight: 600;
}

.thank-you-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-gray) 100%);
}

.thank-you-content {
  background-color: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.thank-you-content h1 {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.policy-content h2 {
  color: var(--primary-green);
  font-size: 2rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  color: var(--dark-green);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p,
.policy-content li {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.policy-content ul {
  padding-left: 2rem;
}

.policy-content a {
  color: var(--primary-green);
  font-weight: 600;
}

.site-footer {
  background-color: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.site-footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

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

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

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

.footer-links a:hover {
  color: white;
}

.footer-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

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

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 2rem 0;
}

.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.cookie-content h4 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cookie-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.cookie-options {
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin-bottom: 0;
}

.cookie-option input[type="checkbox"] {
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.cookie-option strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.cookie-description {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.cookie-buttons .btn {
  flex: 1;
  min-width: 150px;
}

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

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

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

  .page-header h1 {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

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

  .cookie-buttons .btn {
    width: 100%;
  }
}

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

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

  .content-section {
    padding: 3rem 0;
  }

  .thank-you-content {
    padding: 2rem;
  }
}
