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

:root {
  --primary-green: #2d7a4f;
  --primary-green-dark: #1f5738;
  --primary-green-light: #3d9a65;
  --text-dark: #1a1a1a;
  --text-gray: #4a4a4a;
  --text-light: #6a6a6a;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --border-color: #e0e0e0;
  --accent-color: #5cb85c;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-white);
}

.header {
  background-color: var(--background-white);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin-left: 2rem;
  transition: color 0.3s ease;
}

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

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--background-light);
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--text-dark);
}

.hero .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-gray);
  max-width: 700px;
}

.section {
  padding: 5rem 0;
}

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

.section-intro {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.page-header {
  background-color: var(--background-light);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

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

.page-header .lead {
  font-size: 1.25rem;
  color: var(--text-gray);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.3);
}

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
}

.btn-outline-secondary {
  color: var(--text-gray);
  border-color: var(--border-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-outline-secondary:hover {
  background-color: var(--background-light);
  border-color: var(--border-color);
  color: var(--text-dark);
}

.product-card,
.testimonial-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background-color: var(--background-white);
}

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

.product-card .card-img-top {
  border-radius: 8px 8px 0 0;
  height: 250px;
  object-fit: cover;
}

.product-card .card-title,
.testimonial-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.category-box {
  background-color: var(--background-white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: border-color 0.3s ease;
}

.category-box:hover {
  border-color: var(--primary-green);
}

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

.benefit-item {
  padding: 2rem 1rem;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.benefit-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.support-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--background-white);
  height: 100%;
  transition: transform 0.3s ease;
}

.support-card:hover {
  transform: translateY(-3px);
}

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

.support-content {
  padding: 1.5rem;
}

.support-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-green);
}

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

.custom-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

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

.quality-badge {
  padding: 2rem 1rem;
}

.quality-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-green-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.quality-badge h5 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.testimonial-card {
  padding: 2rem;
  height: 100%;
}

.testimonial-card p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

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

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4,
.faq-item h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cta-section {
  background-color: var(--primary-green);
  color: white;
  padding: 5rem 0;
}

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

.cta-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

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

.principle-card {
  background-color: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
}

.principle-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.info-box {
  background-color: var(--background-light);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  border-radius: 4px;
}

.info-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.contact-info-box {
  background-color: var(--background-light);
  border-radius: 8px;
  padding: 2rem;
}

.contact-info-box h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

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

.contact-item h5 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
}

.contact-item p {
  margin-bottom: 0;
  color: var(--text-gray);
}

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

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 122, 79, 0.15);
}

.form-check-input:checked {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

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

.thank-you-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto;
}

.info-card {
  background-color: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
}

.info-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.policy-content {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.policy-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.policy-content ul {
  margin-bottom: 1.5rem;
}

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

.policy-content p {
  margin-bottom: 1.5rem;
}

.disclaimer-box {
  background-color: var(--background-light);
  border: 2px solid var(--primary-green);
  border-radius: 8px;
  padding: 2rem;
}

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

.footer h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer-links {
  list-style: none;
  padding-left: 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-green-light);
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

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

.cookie-banner .btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.cookie-banner .btn-outline-secondary {
  color: white;
  border-color: white;
}

.cookie-banner .btn-outline-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
}

@media (max-width: 991px) {
  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
}

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

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

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

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

  .cookie-banner .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
