* {
  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: #ffffff;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #8b2635;
  letter-spacing: 0.5px;
}

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

.navbar-light .navbar-nav .nav-link {
  color: #2c2c2c;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #8b2635;
}

.hero-section {
  padding: 80px 0;
  background-color: #fafafa;
}

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

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

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

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

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

.btn-primary {
  background-color: #8b2635;
  border-color: #8b2635;
  color: #ffffff;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: #8b2635;
  border-color: #8b2635;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #8b2635;
  border-color: #8b2635;
  color: #ffffff;
}

.btn-cta {
  font-size: 1.125rem;
  padding: 14px 36px;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: #8b2635;
  margin-bottom: 1rem;
}

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

.feature-card p {
  color: #666;
  line-height: 1.6;
}

.care-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.care-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.care-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8b2635;
  font-weight: bold;
}

.texture-card,
.tip-card,
.combination-card,
.ingredient-card,
.responsibility-card,
.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.texture-card:hover,
.tip-card:hover,
.combination-card:hover,
.responsibility-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.texture-card h3,
.tip-card h3,
.combination-card h3,
.responsibility-card h3,
.principle-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #8b2635;
  margin-bottom: 1rem;
}

.ingredient-card {
  text-align: center;
}

.ingredient-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
}

.testimonial-card {
  background: #fafafa;
  border-left: 4px solid #8b2635;
}

.testimonial-card p {
  font-style: italic;
  color: #444;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #8b2635;
  font-style: normal;
}

.faq-item {
  background: #fafafa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

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

.faq-item p {
  color: #666;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, #8b2635 0%, #6b1a28 100%);
  color: #ffffff;
  padding: 80px 0;
}

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

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

.btn-light {
  background-color: #ffffff;
  color: #8b2635;
  font-weight: 600;
}

.btn-light:hover {
  background-color: #f5f5f5;
  color: #6b1a28;
}

.footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 60px 0 20px;
}

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

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

.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: #8b2635;
}

.footer-contact a {
  color: #8b2635;
  text-decoration: none;
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #444;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  color: #999;
}

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

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  margin-bottom: 1rem;
}

.cookie-content a {
  color: #8b2635;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

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

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

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

.principle-card,
.education-card,
.offer-card {
  background: #fafafa;
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
}

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

.natural-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.natural-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8b2635;
  font-weight: bold;
}

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

.contact-form .form-control:focus {
  border-color: #8b2635;
  box-shadow: 0 0 0 0.2rem rgba(139, 38, 53, 0.25);
}

.contact-info-card {
  background: #fafafa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.contact-info-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #8b2635;
  margin-bottom: 0.75rem;
}

.contact-info-card p {
  margin-bottom: 0;
  color: #2c2c2c;
}

.contact-info-card a {
  color: #8b2635;
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

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

.thank-you-icon {
  font-size: 5rem;
  color: #8b2635;
  margin-bottom: 2rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(139, 38, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

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

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

.thank-you-subtext {
  font-size: 1.125rem;
  color: #999;
  margin-bottom: 2.5rem;
}

.thank-you-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

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

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
}

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

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

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

.disclaimer-alert {
  background-color: #fff3cd;
  border: 2px solid #8b2635;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.disclaimer-alert h3 {
  color: #8b2635;
  font-weight: 700;
  margin-top: 0;
}

.disclaimer-footer {
  background-color: #f5f5f5;
  border-left: 4px solid #8b2635;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 4px;
}

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

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

  .navbar-collapse {
    margin-top: 1rem;
  }
}

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

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

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

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

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

  .cookie-content {
    flex-direction: column;
  }

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

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}
