:root {
  --primary-yellow: #f4c430;
  --primary-yellow-dark: #d4a410;
  --primary-yellow-light: #fff4d0;
  --text-dark: #2c3e50;
  --text-medium: #5a6c7d;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e6ed;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --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-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

.navbar {
  padding: 1.25rem 0;
  box-shadow: var(--shadow-sm);
}

.navbar-brand .brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-yellow-dark);
  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-yellow-dark);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-dark) 100%);
  border: none;
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--primary-yellow-dark) 0%, var(--primary-yellow) 100%);
}

.btn-outline-primary {
  border: 2px solid var(--primary-yellow);
  color: var(--primary-yellow-dark);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-yellow);
  color: var(--text-dark);
}

.btn-outline-secondary {
  border: 2px solid var(--border-color);
  color: var(--text-medium);
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius);
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-yellow-light) 0%, var(--bg-white) 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

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

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

.page-header {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--primary-yellow-light) 0%, var(--bg-light) 100%);
  text-align: center;
}

.feature-card,
.category-card,
.formula-card,
.habit-card,
.adaptation-card,
.choice-card,
.value-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.feature-card:hover,
.category-card:hover,
.formula-card:hover,
.habit-card:hover,
.adaptation-card:hover,
.choice-card:hover,
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ingredients-block {
  background-color: var(--primary-yellow-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 1rem;
}

.ingredients-block h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.ingredients-block ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.ingredients-block li {
  color: var(--text-medium);
  margin-bottom: 0.25rem;
}

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

.product-disclaimer {
  background-color: var(--primary-yellow-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-top: 3rem;
  border-left: 4px solid var(--primary-yellow-dark);
}

.product-disclaimer h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.disclaimer-box {
  background-color: var(--primary-yellow-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-yellow-dark);
}

.disclaimer-box p {
  margin-bottom: 1rem;
}

.disclaimer-box strong {
  color: var(--text-dark);
}

.disclaimer-note {
  background-color: var(--primary-yellow-light);
  padding: 1rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-yellow-dark);
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-medium);
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--text-dark);
  font-style: normal;
  margin-top: 1rem;
}

.faq-section .card {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.faq-section .card-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
}

.faq-section .btn-link {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
}

.faq-section .btn-link:hover {
  color: var(--primary-yellow-dark);
}

.faq-section .card-body {
  padding: 1.25rem;
  color: var(--text-medium);
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-dark) 100%);
  color: var(--text-dark);
}

.cta-section h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-section .lead {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.contact-info-box,
.contact-details {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.contact-info-box p,
.contact-details p {
  margin-bottom: 0.5rem;
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

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

.form-control:focus {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 0.2rem rgba(244, 196, 48, 0.25);
}

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

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

.values-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-yellow-dark);
  font-weight: bold;
}

.thank-you-section {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-yellow-light) 0%, var(--bg-light) 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content h1 {
  margin-bottom: 1.5rem;
}

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

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--text-medium);
}

.alert {
  border-radius: var(--border-radius);
  padding: 1.25rem;
}

.footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 3rem 0 1.5rem;
}

.footer h5 {
  color: var(--primary-yellow);
  margin-bottom: 1.25rem;
}

.footer p {
  color: var(--bg-light);
}

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

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

.footer-links a {
  color: var(--bg-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
}

.footer-disclaimer {
  text-align: center;
  padding: 1rem 0;
  opacity: 0.8;
}

.footer-copyright {
  text-align: center;
  padding: 1rem 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

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

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  color: var(--bg-white);
}

.cookie-content a {
  color: var(--primary-yellow);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.note-text {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

.rounded {
  border-radius: var(--border-radius);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

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

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

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

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

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

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
  }
}
