:root {
  --primary-color: #4a8b6f;
  --primary-dark: #3a6f59;
  --primary-light: #5fa885;
  --secondary-color: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --border-color: #e0e0e0;
  --white: #ffffff;
  --success-color: #4a8b6f;
}

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

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

.navbar {
  padding: 1rem 0;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 139, 111, 0.3);
}

.hero {
  position: relative;
  margin-top: 0;
}

.hero-image {
  position: relative;
  height: 600px;
  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, 139, 111, 0.85), rgba(95, 168, 133, 0.75));
  display: flex;
  align-items: center;
}

.hero-content {
  color: var(--white);
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content .lead {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

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

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.feature-card,
.info-card,
.selection-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover,
.info-card:hover,
.selection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.feature-card h4,
.info-card h4,
.selection-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.bg-light {
  background-color: #f8f9fa !important;
}

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

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

.page-header .lead {
  font-size: 1.3rem;
  opacity: 0.95;
}

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

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.product-content {
  padding: 2rem;
  flex-grow: 1;
}

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

.ingredients-block {
  background: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.ingredients-block h5 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.ingredients-block ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.ingredients-block li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.product-note {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 1rem;
}

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

.disclaimer-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  padding: 1rem;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  margin-bottom: 1rem;
}

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

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

.contact-section {
  padding: 4rem 0;
}

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

.contact-info-card h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

.thank-you-card {
  background: var(--white);
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.thank-you-card h1 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.policy-section {
  padding: 4rem 0;
}

.policy-section h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 2rem;
  font-size: 1.8rem;
}

.policy-section h4 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: 1.5rem;
}

.policy-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.testimonials-section {
  background: linear-gradient(135deg, rgba(74, 139, 111, 0.05), rgba(95, 168, 133, 0.05));
}

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

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.faq-section {
  padding: 4rem 0;
}

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

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  padding: 5rem 0;
  color: var(--white);
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.cta-section .lead {
  font-size: 1.2rem;
  opacity: 0.95;
}

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

.cta-section .btn-primary:hover {
  background: var(--secondary-color);
  color: var(--primary-dark);
}

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

.footer h5 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

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

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

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

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

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-links-inline {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links-inline li {
  margin: 0 1rem 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

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

.cookie-banner .btn {
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .hero-image {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .lead {
    font-size: 1.1rem;
  }

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

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

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

  .cookie-banner .btn {
    margin-top: 0.5rem;
    margin-left: 0;
  }

  .footer-links-inline {
    flex-direction: column;
    align-items: center;
  }

  .footer-links-inline li {
    margin: 0.25rem 0;
  }
}

@media (max-width: 576px) {
  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }

  .product-content {
    padding: 1.5rem;
  }

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