* {
  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: #2c2c2c;
  background-color: #faf8f5;
}

.navbar {
  background-color: #ffffff;
  padding: 1.5rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 600;
  color: #8b2e2e;
  letter-spacing: 0.5px;
}

.navbar-brand:hover {
  color: #6b1e1e;
}

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

.nav-link:hover {
  color: #8b2e2e;
}

.nav-link.active {
  color: #8b2e2e;
}

.hero {
  padding: 5rem 0;
  background-color: #f5f1ed;
}

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

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

.hero-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #8b2e2e;
  border-color: #8b2e2e;
  color: #ffffff;
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #6b1e1e;
  border-color: #6b1e1e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 46, 46, 0.3);
}

.btn-outline-secondary {
  border-color: #8b2e2e;
  color: #8b2e2e;
  font-weight: 600;
  padding: 0.875rem 2.5rem;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: #8b2e2e;
  border-color: #8b2e2e;
  color: #ffffff;
}

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

.bg-light {
  background-color: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #2c2c2c;
}

.feature-card {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

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

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #8b2e2e;
  margin-bottom: 1rem;
}

.product-section {
  padding: 5rem 0;
  background-color: #f5f1ed;
}

.product-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 1.5rem 1.5rem 1rem;
}

.product-card p {
  color: #5a5a5a;
  padding: 0 1.5rem 1.5rem;
}

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

.info-section h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

.ingredient-card {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #8b2e2e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ingredient-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #8b2e2e;
  margin-bottom: 1rem;
}

.guide-box {
  padding: 2.5rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.guide-box h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.guide-box ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.guide-box ol li {
  margin-bottom: 0.5rem;
  color: #5a5a5a;
}

.disclaimer-box {
  padding: 1.5rem;
  background-color: #fff5f5;
  border: 1px solid #f0d0d0;
  border-radius: 6px;
}

.small-text {
  font-size: 0.9rem;
  color: #5a5a5a;
  font-style: italic;
}

.testimonial-section {
  padding: 5rem 0;
  background-color: #f5f1ed;
}

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

.testimonial-card p:first-child {
  font-style: italic;
  color: #5a5a5a;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #8b2e2e;
  font-size: 0.95rem;
}

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

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #5a5a5a;
  line-height: 1.7;
}

.cta-section {
  padding: 5rem 0;
  background-color: #8b2e2e;
  color: #ffffff;
}

.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: #ffffff;
  color: #8b2e2e;
  border-color: #ffffff;
}

.cta-section .btn-primary:hover {
  background-color: #f5f1ed;
  border-color: #f5f1ed;
  color: #6b1e1e;
}

.page-hero {
  padding: 4rem 0 3rem;
  background-color: #f5f1ed;
  text-align: center;
}

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

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

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

.principle-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #8b2e2e;
  margin-bottom: 1rem;
}

.philosophy-box {
  padding: 2rem;
  background-color: #f5f1ed;
  border-radius: 8px;
}

.philosophy-box h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.philosophy-box ul {
  padding-left: 1.5rem;
}

.philosophy-box ul li {
  margin-bottom: 0.75rem;
  color: #5a5a5a;
}

.transparency-box {
  padding: 2rem;
  background-color: #f5f1ed;
  border-radius: 8px;
}

.transparency-box ul {
  padding-left: 1.5rem;
  margin: 0;
}

.transparency-box ul li {
  margin-bottom: 0.75rem;
  color: #5a5a5a;
}

.info-box {
  padding: 2rem;
  background-color: #f5f1ed;
  border-radius: 8px;
}

.info-box ul {
  padding-left: 1.5rem;
  margin: 0;
}

.info-box ul li {
  margin-bottom: 0.75rem;
  color: #5a5a5a;
}

.contact-info-box {
  padding: 2.5rem;
  background-color: #f5f1ed;
  border-radius: 8px;
  height: 100%;
}

.contact-info-box h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 2rem;
}

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

.contact-detail h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #8b2e2e;
  margin-bottom: 0.5rem;
}

.contact-detail p {
  color: #5a5a5a;
  margin: 0;
  line-height: 1.8;
}

.contact-form-box {
  padding: 2.5rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form-box h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 2rem;
}

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

.form-control:focus {
  border-color: #8b2e2e;
  box-shadow: 0 0 0 0.2rem rgba(139, 46, 46, 0.15);
}

.form-check-label {
  color: #5a5a5a;
  font-size: 0.95rem;
}

.form-check-label a {
  color: #8b2e2e;
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.thank-you-section {
  padding: 6rem 0;
}

.thank-you-box {
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.thank-you-box h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8b2e2e;
  margin-bottom: 1.5rem;
}

.legal-content {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid #f5f1ed;
}

.legal-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #8b2e2e;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content p {
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

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

.legal-content ul li {
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-content a {
  color: #8b2e2e;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content .alert {
  margin-bottom: 2rem;
}

.alert-warning {
  background-color: #fff8e1;
  border: 1px solid #ffd54f;
  border-radius: 6px;
  padding: 1.5rem;
}

.alert-warning h4 {
  color: #8b2e2e;
  margin-top: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.5;
}

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

.btn-cookie {
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cookie-accept {
  background-color: #8b2e2e;
  color: #ffffff;
}

.btn-cookie-accept:hover {
  background-color: #6b1e1e;
  transform: translateY(-2px);
}

.btn-cookie-reject {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-policy-link {
  color: #ffffff;
  text-decoration: underline;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cookie-policy-link:hover {
  color: #8b2e2e;
  text-decoration: none;
}

.footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer p {
  color: #cccccc;
  line-height: 1.8;
}

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

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

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

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #444444;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.footer-legal a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
}

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

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

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

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

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

  .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

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

  .footer-legal {
    margin-top: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .legal-content {
    padding: 1.5rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content h3 {
    font-size: 1.25rem;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

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

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

@media (max-width: 992px) {
  .hero {
    padding: 3rem 0;
  }

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

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

  .cookie-banner-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}
