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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
}

.header-main {
  background: linear-gradient(135deg, #2d7a3e 0%, #1a4d28 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
}

.logo-text {
  color: #ffffff;
  text-decoration: none;
}

.navbar-light .navbar-nav .nav-link {
  color: #ffffff;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #a8e6b4;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 122, 62, 0.85) 0%, rgba(26, 77, 40, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 20px;
}

.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.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.main-content {
  min-height: 60vh;
}

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

.bg-light-custom {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5ea 100%);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d7a3e;
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.section-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category-card,
.product-card,
.value-card,
.suggestion-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover,
.product-card:hover,
.value-card:hover,
.suggestion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 122, 62, 0.15);
}

.category-image,
.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.category-title,
.product-title,
.value-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d7a3e;
  margin-bottom: 1rem;
}

.category-text,
.product-description,
.value-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

.product-ingredients {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e8f5ea;
}

.product-ingredients h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d7a3e;
  margin-bottom: 0.75rem;
}

.product-ingredients ul {
  list-style: none;
  padding-left: 0;
}

.product-ingredients li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.product-ingredients li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d7a3e;
  font-weight: bold;
}

.faq-item,
.feature-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h4,
.feature-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d7a3e;
  margin-bottom: 0.75rem;
}

.faq-item p,
.feature-item p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2d7a3e 0%, #1a4d28 100%);
  text-align: center;
}

.cta-content {
  color: #ffffff;
}

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

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #2d7a3e 0%, #1a4d28 100%);
  border: none;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 122, 62, 0.3);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #236431 0%, #153d21 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 62, 0.4);
  color: #ffffff;
}

.btn-secondary-custom {
  background: #6c757d;
  border: none;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 2px solid #2d7a3e;
  color: #2d7a3e;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #2d7a3e;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-main {
  background: linear-gradient(135deg, #1a4d28 0%, #0f2e18 100%);
  color: #ffffff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #a8e6b4;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

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

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

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #a8e6b4;
}

.footer-copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #a8e6b4;
}

.page-header {
  background: linear-gradient(135deg, #2d7a3e 0%, #1a4d28 100%);
  padding: 4rem 0;
  text-align: center;
  color: #ffffff;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

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

.info-disclaimer {
  padding: 3rem 0;
  background: #fff3cd;
}

.disclaimer-box {
  background: #ffffff;
  border-left: 4px solid #ffc107;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.disclaimer-box h3 {
  color: #856404;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: #856404;
  margin-bottom: 1.5rem;
}

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

.contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d7a3e;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  margin-bottom: 0;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.contact-form .form-control {
  border: 2px solid #e8f5ea;
  border-radius: 10px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #2d7a3e;
  box-shadow: 0 0 0 0.2rem rgba(45, 122, 62, 0.1);
}

.contact-form .form-check-input:checked {
  background-color: #2d7a3e;
  border-color: #2d7a3e;
}

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

.thank-you-content {
  background: #ffffff;
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2d7a3e 0%, #1a4d28 100%);
  color: #ffffff;
  font-size: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d7a3e;
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

.legal-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2d7a3e;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8f5ea;
}

.legal-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d7a3e;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.alert-box {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.alert-box h3 {
  color: #856404;
  font-weight: 600;
  margin-bottom: 1rem;
}

.alert-box p {
  color: #856404;
  margin-bottom: 0;
}

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

.approach-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.approach-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2d7a3e;
  font-weight: bold;
  font-size: 1.2rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  color: #555;
}

.cookie-content a {
  color: #2d7a3e;
  font-weight: 600;
}

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

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

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

  .hero-section {
    height: 400px;
  }

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

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

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

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

  .thank-you-title {
    font-size: 1.75rem;
  }
}
