:root {
  --primary-color: #7da87b;
  --secondary-color: #d4b896;
  --accent-color: #a8927d;
  --dark-color: #2c3e2e;
  --light-color: #f8f6f3;
  --text-color: #3a3a3a;
  --border-radius: 8px;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-color) 0%, #3d523f 100%);
  color: #ffffff;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

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

.cookie-banner .btn {
  font-size: 14px;
  padding: 8px 20px;
  border-radius: var(--border-radius);
}

.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
}

.brand-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 30px;
}

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

.content-section.bg-light {
  background-color: var(--light-color);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.section-text {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.8;
}

.rounded-lg {
  border-radius: calc(var(--border-radius) * 2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #6b9469 100%);
  border: none;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6b9469 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(125, 168, 123, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

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

.category-list,
.format-list {
  margin-top: 20px;
}

.category-item,
.format-item {
  margin-bottom: 25px;
  padding: 20px;
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-item h4,
.format-item h4 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.category-item p,
.format-item p {
  color: var(--text-color);
  margin: 0;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fef9f3 0%, #fff5eb 100%);
  border-left: 4px solid var(--accent-color);
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 30px 0;
}

.disclaimer-text {
  font-size: 15px;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.8;
}

.disclaimer-text:last-child {
  margin-bottom: 0;
}

.disclaimer-box a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #ffffff;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-section .btn-primary {
  background: #ffffff;
  color: var(--primary-color);
}

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

.main-footer {
  background-color: var(--dark-color);
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.footer-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--secondary-color);
}

.page-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 60px 0;
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 18px;
  color: var(--text-color);
}

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

.category-section {
  margin-bottom: 60px;
}

.category-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
}

.category-description {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 30px;
}

.product-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 25px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.product-description {
  font-size: 15px;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.7;
}

.product-ingredients,
.product-context {
  margin-bottom: 20px;
}

.product-ingredients h4,
.product-context h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.product-ingredients p,
.product-context p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
}

.disclaimer-section {
  margin-top: 60px;
}

.value-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value-text {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.7;
}

.positioning-content,
.standards-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-card,
.contact-form-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-heading,
.form-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.contact-text,
.form-description {
  font-size: 15px;
  color: var(--text-color);
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 30px;
}

.contact-detail-item {
  margin-bottom: 25px;
}

.contact-detail-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-detail-item p {
  font-size: 15px;
  color: var(--text-color);
  margin: 0;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.contact-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  padding: 12px 15px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(125, 168, 123, 0.15);
}

.form-notice {
  background-color: var(--light-color);
  padding: 15px;
  border-radius: var(--border-radius);
}

.thankyou-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
}

.thankyou-card {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: calc(var(--border-radius) * 2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #ffffff;
  font-size: 48px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto 30px;
}

.thankyou-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.thankyou-text {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.8;
}

.thankyou-actions {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-block {
  margin-bottom: 40px;
}

.policy-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.policy-block h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 25px;
  margin-bottom: 15px;
}

.policy-block p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 15px;
}

.policy-block ul {
  margin: 15px 0;
  padding-left: 30px;
}

.policy-block li {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 10px;
}

.policy-block a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

.disclaimer-highlight {
  background: linear-gradient(135deg, #fef9f3 0%, #fff5eb 100%);
  border: 3px solid var(--accent-color);
  padding: 40px;
  border-radius: var(--border-radius);
}

.large-text {
  font-size: 18px;
  line-height: 1.8;
}

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

  .section-title {
    font-size: 28px;
  }

  .page-title {
    font-size: 36px;
  }

  .cta-title {
    font-size: 32px;
  }
}

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

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

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .page-title {
    font-size: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .thankyou-actions {
    flex-direction: column;
  }

  .thankyou-actions .btn {
    width: 100%;
  }
}
