* {
  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: #333;
  background-color: #fff;
}

.site-header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 0;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d5016;
  letter-spacing: -0.5px;
}

.navbar-brand:hover {
  color: #3a6b1d;
}

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

.nav-link:hover {
  color: #3a6b1d;
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.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, 80, 22, 0.85) 0%, rgba(58, 107, 29, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: #f0f0f0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.125rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.info-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.info-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.info-card-content {
  padding: 1.5rem;
}

.info-card-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d5016;
  margin-bottom: 0.75rem;
}

.info-card-content p {
  color: #666;
  margin: 0;
}

.feature-box {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: #3a6b1d;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d5016;
  margin-bottom: 1rem;
}

.feature-box p {
  color: #666;
  margin: 0;
}

.guidance-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #3a6b1d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: 100%;
}

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

.guidance-card p {
  color: #666;
  margin: 0;
}

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

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

.product-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d5016;
  margin-bottom: 1rem;
}

.product-content p {
  color: #666;
  margin-bottom: 1rem;
  flex: 1;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  color: #555;
  padding: 0.5rem 0;
  border-top: 1px solid #e5e5e5;
}

.product-features li:before {
  content: "✓ ";
  color: #3a6b1d;
  font-weight: 700;
  margin-right: 0.5rem;
}

.cta-section {
  background: linear-gradient(135deg, #2d5016 0%, #3a6b1d 100%);
  padding: 80px 0;
  color: #fff;
}

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

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

.btn-primary {
  background-color: #3a6b1d;
  border-color: #3a6b1d;
  color: #fff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

.btn-light {
  background-color: #fff;
  border-color: #fff;
  color: #3a6b1d;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #2d5016;
  transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
  background-color: #3a6b1d;
  border-color: #3a6b1d;
  color: #fff;
}

.btn-outline-secondary {
  border-color: #6c757d;
  color: #6c757d;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
}

.page-header {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #666;
}

.about-content {
  line-height: 1.8;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2d5016;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.about-content h2:first-of-type {
  margin-top: 0;
}

.about-content p {
  color: #555;
  margin-bottom: 1.5rem;
}

.about-content ul {
  color: #555;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #3a6b1d;
}

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

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

.contact-form .form-control:focus {
  border-color: #3a6b1d;
  box-shadow: 0 0 0 0.2rem rgba(58, 107, 29, 0.25);
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.thank-you-content {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 8px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: #3a6b1d;
  color: #fff;
  font-size: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

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

.thank-you-text {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 1rem;
}

.thank-you-subtext {
  font-size: 1rem;
  color: #777;
  margin-bottom: 0;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2d5016;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

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

.legal-content p {
  color: #555;
  margin-bottom: 1.5rem;
}

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

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

.site-footer {
  background-color: #2d5016;
  color: #fff;
  padding: 60px 0 30px;
}

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

.footer-text {
  color: #d0d0d0;
  line-height: 1.6;
}

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

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

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

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

.footer-contact {
  color: #d0d0d0;
  line-height: 1.8;
}

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

.footer-copyright {
  color: #d0d0d0;
  margin: 0;
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 1.5rem 0;
}

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

.cookie-banner-text h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d5016;
  margin-bottom: 0.5rem;
}

.cookie-banner-text p {
  font-size: 0.875rem;
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.cookie-banner-link {
  margin-bottom: 0;
}

.cookie-banner-link a {
  color: #3a6b1d;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

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

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

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

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

@media (max-width: 767px) {
  .hero-section {
    min-height: 500px;
  }

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

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

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

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

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

  .cta-text {
    font-size: 1rem;
  }

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

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

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }
}
