:root {
  --primary-color: #2d7a4a;
  --primary-light: #4a9e63;
  --secondary-color: #f5f5f5;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --white: #ffffff;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

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

a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.brand-color {
  color: var(--primary-color);
}

.navbar {
  background-color: var(--white) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--text-dark) !important;
  font-weight: bold;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(45, 122, 74, 0.05) 0%, rgba(245, 245, 245, 1) 100%);
}

.hero-section h1 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section .lead {
  color: var(--text-light);
  font-size: 1.2rem;
}

.btn-custom {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-custom:hover {
  background-color: var(--primary-light);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 74, 0.2);
}

.benefits-section {
  padding: 80px 0;
}

.benefits-section h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 40px;
}

.benefit-card {
  background-color: var(--white);
  border: 2px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(45, 122, 74, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.benefit-card h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--text-light);
}

.who-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.who-section h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 40px;
}

.who-card {
  background-color: var(--white);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.who-card h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.who-card p {
  color: var(--text-light);
}

.testimonials-section {
  padding: 80px 0;
}

.testimonials-section h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid var(--primary-color);
}

.testimonial-text {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  color: var(--text-dark);
  font-weight: 600;
}

.cta-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.cta-section h2,
.cta-section p {
  color: var(--white);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-header {
  background-color: var(--secondary-color);
  padding: 40px 0;
  border-bottom: 3px solid var(--primary-color);
}

.page-header h1 {
  color: var(--text-dark);
  font-weight: 700;
}

.products-section {
  padding: 80px 0;
}

.product-card {
  background-color: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(45, 122, 74, 0.15);
  transform: translateY(-4px);
}

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

.product-body {
  padding: 20px;
}

.product-body h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.product-desc {
  color: var(--text-light);
  margin-bottom: 15px;
}

.info-section {
  padding: 60px 0;
}

.info-section h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 30px;
}

.info-section h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.about-section {
  padding: 80px 0;
}

.about-section h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.values-list {
  list-style: none;
}

.values-list li {
  color: var(--text-light);
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

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

.contact-section {
  padding: 80px 0;
}

.contact-info {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
}

.contact-info h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-form {
  background-color: var(--white);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 4px;
  padding: 10px 15px;
  color: var(--text-dark);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(45, 122, 74, 0.25);
  color: var(--text-dark);
}

.form-group label {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 8px;
}

.custom-control-label {
  color: var(--text-light);
}

.custom-control-label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.thank-you-section {
  padding: 100px 0;
  text-align: center;
}

.thank-you-card {
  background-color: var(--secondary-color);
  padding: 50px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.thank-you-card h1 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.thank-you-card p {
  color: var(--text-light);
}

.legal-section {
  padding: 80px 0;
}

.legal-content h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.legal-content ul {
  color: var(--text-light);
  margin-left: 20px;
}

.legal-content li {
  margin-bottom: 10px;
}

.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.footer .text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}

.cookie-banner {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 20px 0;
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

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

.cookie-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.cookie-link {
  color: var(--primary-light);
  text-decoration: underline;
}

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

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

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
  }

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

  .benefits-section,
  .who-section,
  .testimonials-section,
  .about-section,
  .contact-section,
  .products-section {
    padding: 50px 0;
  }

  .page-header {
    padding: 30px 0;
  }

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

  .cta-section {
    padding: 40px 0;
  }

  .cookie-banner p {
    font-size: 0.9rem;
  }

  .cookie-banner .btn {
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
  }

  .contact-info {
    margin-bottom: 30px;
  }

  .footer {
    padding: 30px 0 15px;
  }

  .thank-you-card {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }

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

  .benefit-card,
  .who-card,
  .testimonial-card,
  .product-card,
  .contact-info {
    padding: 20px;
  }

  .product-image {
    height: 200px;
  }
}
