:root {
  --primary-color: #c44a4a;
  --primary-dark: #a83d3d;
  --primary-light: #d67272;
  --secondary-color: #2c3e50;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
}

* {
  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-dark);
  line-height: 1.6;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand .brand-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-item.active .nav-link {
  color: var(--primary-color);
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image {
  background-size: cover;
  background-position: center;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(196, 74, 74, 0.85) 0%, rgba(44, 62, 80, 0.85) 100%);
  width: 100%;
  padding: 100px 0;
}

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

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

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

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

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  margin-top: 15px;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

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

.card {
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.info-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-box-alt {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 6px;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe9e9 100%);
  border: 2px solid var(--primary-light);
  border-radius: 10px;
}

.ingredient-card {
  padding: 20px;
}

.ingredient-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.choice-card img {
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 15px;
}

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

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.faq-question {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--text-light);
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

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

.product-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.product-description {
  color: var(--text-light);
  margin-bottom: 20px;
}

.ingredients-block {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  margin-top: auto;
}

.ingredients-title {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.ingredients-list {
  margin-bottom: 15px;
  padding-left: 20px;
}

.ingredients-list li {
  color: var(--text-light);
  margin-bottom: 5px;
}

.ingredients-note {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0;
}

.product-disclaimer {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe9e9 100%);
  border: 2px solid var(--primary-light);
  border-radius: 10px;
}

.approach-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.transparency-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-box {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
}

.contact-info-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

.thank-you-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-checkmark {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
}

.page-header {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
  border-bottom: 3px solid var(--primary-color);
}

.policy-section {
  min-height: 50vh;
}

.policy-content h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.policy-content ul {
  color: var(--text-light);
  margin-bottom: 15px;
  padding-left: 30px;
}

.policy-content ul li {
  margin-bottom: 8px;
}

.footer {
  margin-top: 80px;
}

.brand-footer {
  color: var(--primary-light);
  font-weight: 700;
  font-size: 1.5rem;
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

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

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

@media (max-width: 768px) {
  .hero-image {
    min-height: 400px;
  }

  .hero-overlay {
    padding: 60px 0;
  }

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

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

  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.1rem;
  }
}
