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

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

.container {
  max-width: 1200px;
}

.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand .logo {
  height: 45px;
  width: auto;
}

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

.nav-link:hover {
  color: #2d5016;
}

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

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

.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(45, 80, 22, 0.85) 0%, rgba(52, 115, 40, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #f7fafc;
  max-width: 700px;
  margin: 0 auto;
}

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

.content-section.bg-light {
  background-color: #f7fafc;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-text {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.btn-link {
  color: #2d5016;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.btn-link:hover {
  color: #1e3a0f;
  text-decoration: none;
}

.btn-primary {
  background-color: #2d5016;
  border-color: #2d5016;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1e3a0f;
  border-color: #1e3a0f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

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

.btn-outline-primary:hover {
  background-color: #2d5016;
  border-color: #2d5016;
  color: #ffffff;
}

.catalog-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.product-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px 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(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

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

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.product-description {
  color: #4a5568;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.btn-product {
  background-color: #347328;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-product:hover {
  background-color: #2d5016;
  color: #ffffff;
  text-decoration: none;
}

.info-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.info-card h4 {
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.info-card p {
  color: #4a5568;
  line-height: 1.7;
}

.testimonials-section {
  padding: 5rem 0;
  background-color: #f7fafc;
}

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

.testimonial-text {
  font-size: 1.125rem;
  color: #2d3748;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: #2d5016;
}

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

.card {
  border: none;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0;
}

.card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}

.card-header .btn-link {
  color: #1a202c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.25rem 0;
  width: 100%;
  text-align: left;
  display: block;
}

.card-header .btn-link:hover {
  color: #2d5016;
}

.card-body {
  color: #4a5568;
  line-height: 1.7;
  padding: 1rem 0 1.5rem 0;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2d5016 0%, #347328 100%);
  color: #ffffff;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f7fafc;
}

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

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

.page-subtitle {
  font-size: 1.25rem;
  color: #f7fafc;
  margin-bottom: 0;
}

.principles-list {
  color: #4a5568;
  padding-left: 1.5rem;
  margin-top: 1.5rem;
}

.principles-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.info-box-section {
  padding: 3rem 0;
  background-color: #f7fafc;
}

.info-box {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid #2d5016;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-box p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-info {
  margin-top: 2rem;
}

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

.contact-item h5 {
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #4a5568;
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: #f7fafc;
  padding: 2.5rem;
  border-radius: 8px;
}

.contact-form-wrapper h3 {
  color: #1a202c;
  font-weight: 700;
}

.form-group label {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid #cbd5e0;
  padding: 0.75rem;
  border-radius: 4px;
}

.form-control:focus {
  border-color: #2d5016;
  box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.15);
}

.form-check-label a {
  color: #2d5016;
  text-decoration: underline;
}

.thank-you-box {
  background: #f7fafc;
  padding: 3rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.legal-content {
  color: #4a5568;
  line-height: 1.7;
}

.legal-content h2 {
  color: #1a202c;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.legal-content h3 {
  color: #2d3748;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.footer {
  background-color: #1a202c;
  color: #e2e8f0;
  padding: 3rem 0 1rem;
}

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

.footer-text {
  color: #cbd5e0;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

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

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

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

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

.footer-divider {
  border-top: 1px solid #2d3748;
  margin: 2rem 0 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copyright {
  color: #a0aec0;
  margin-bottom: 0;
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

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

.footer-legal a:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a202c;
  color: #ffffff;
  padding: 1.5rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-text a {
  color: #68d391;
  text-decoration: underline;
}

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

.cookie-buttons .btn {
  white-space: nowrap;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
}

.cookie-buttons .btn-outline-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.cookie-buttons .btn-outline-secondary:hover {
  background-color: #ffffff;
  color: #1a202c;
}

.cookie-buttons .btn-link {
  color: #cbd5e0;
  margin-top: 0;
}

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

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

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

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

  .hero-section {
    height: 450px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

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

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

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

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

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }

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

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}
