:root {
  --cream-light: #fbf8f3;
  --cream: #f5efe6;
  --brown-light: #d4a574;
  --brown: #8b6f47;
  --brown-dark: #5c4a30;
  --text-dark: #2c2416;
  --text-muted: #6c5f4e;
}

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

.navbar-brand {
  font-size: 1.5rem;
  color: var(--brown-dark) !important;
  font-weight: 700;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--brown) !important;
}

.hero-section {
  padding: 100px 0;
  background-color: var(--cream-light);
}

.hero-section h1 {
  color: var(--brown-dark);
  font-weight: 700;
}

.hero-section .lead {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.btn-primary {
  background-color: var(--brown);
  border-color: var(--brown);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
  color: var(--brown);
  border-color: var(--brown);
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--brown);
  border-color: var(--brown);
  color: #fff;
}

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

.bg-light {
  background-color: #f9f9f9 !important;
}

.bg-cream {
  background-color: var(--cream) !important;
}

.section-title {
  color: var(--brown-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.feature-card,
.routine-card,
.tip-card,
.principle-card,
.principle-box {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.feature-card h4,
.routine-card h4,
.tip-card h5,
.principle-card h5,
.principle-box h4 {
  color: var(--brown-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card p,
.routine-card p,
.tip-card p,
.principle-card p,
.principle-box p {
  color: var(--text-muted);
}

.advice-list {
  margin-top: 2rem;
}

.advice-item {
  background-color: #fff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--brown-light);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.advice-item h5 {
  color: var(--brown-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.advice-item p {
  color: var(--text-muted);
  margin-bottom: 0;
}

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

.testimonial-text {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  color: var(--brown-dark);
  font-weight: 600;
  margin-bottom: 0;
}

.faq-item {
  background-color: #fff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.faq-item h5 {
  color: var(--brown-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text-muted);
  margin-bottom: 0;
}

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

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

.faq-item-compact h6 {
  color: var(--brown-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-item-compact p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.cta-section {
  padding: 80px 0;
  background-color: var(--cream);
}

.cta-section h2 {
  color: var(--brown-dark);
  font-weight: 700;
}

.cta-section .lead {
  color: var(--text-muted);
}

.footer {
  background-color: var(--brown-dark);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

.page-hero {
  padding: 80px 0 40px;
  background-color: var(--cream-light);
}

.page-hero h1 {
  color: var(--brown-dark);
}

.page-hero .lead {
  color: var(--text-muted);
}

.page-hero-small {
  padding: 60px 0 30px;
  background-color: var(--cream-light);
}

.page-hero-small h1 {
  color: var(--brown-dark);
}

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

.contact-form .form-control:focus {
  border-color: var(--brown-light);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.contact-form label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-info-box {
  background-color: #fff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.contact-info-box h5 {
  color: var(--brown-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-info-box p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.thank-you-section {
  padding: 100px 0;
  min-height: 60vh;
}

.thank-you-box {
  background-color: #fff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-box h1 {
  color: var(--brown-dark);
}

.thank-you-box .lead {
  color: var(--brown);
  font-weight: 600;
}

.thank-you-box p {
  color: var(--text-muted);
}

.thank-you-actions {
  margin-top: 2rem;
}

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

.legal-content h2 {
  color: var(--brown-dark);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

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

.legal-content h3 {
  color: var(--brown);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.legal-content ul {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--brown);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--brown-dark);
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: var(--text-muted);
}

.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brown);
  font-weight: 700;
  font-size: 1.2rem;
}

.mission-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--brown-dark);
  color: #fff;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
  margin-right: 1rem;
}

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

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

.cookie-buttons .btn {
  white-space: nowrap;
}

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

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

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

  .hero-section h1 {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .thank-you-actions .btn {
    margin: 0 !important;
    width: 100%;
  }
}
