:root {
  --primary-color: #d97841;
  --primary-dark: #c96832;
  --secondary-color: #2c2c2c;
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
  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-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

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

.hero-overlay .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

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

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

.page-header {
  background-color: var(--bg-light);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature-card,
.principle-card,
.ingredient-card,
.routine-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.principle-card:hover,
.ingredient-card:hover,
.routine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.feature-card h3,
.principle-card h3,
.ingredient-card h4,
.routine-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.testimonial-card,
.story-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
  height: 100%;
}

.testimonial-card .author,
.story-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 1rem;
}

.advice-item,
.faq-item {
  background: var(--white);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.advice-item h4,
.faq-item h4 {
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.routine-card ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.routine-card li {
  margin-bottom: 0.5rem;
}

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

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background-color: var(--bg-light);
  color: var(--primary-dark);
}

.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

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

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

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

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

.footer p {
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

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

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(217, 120, 65, 0.25);
}

.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
}

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

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h4 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.thank-you-section {
  padding: 8rem 0;
  text-align: center;
}

.thank-you-icon {
  display: inline-block;
}

.legal-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
}

.legal-content h2 {
  color: var(--primary-color);
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.legal-content h3 {
  color: var(--secondary-color);
  font-size: 1.35rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

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

.disclaimer-content .alert {
  border-radius: 8px;
  padding: 1.25rem;
}

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

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

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

.cookie-banner a:hover {
  color: var(--white);
}

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

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

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

@media (max-width: 767px) {
  .hero-section {
    height: 400px;
  }

  .hero-overlay h1 {
    font-size: 1.75rem;
  }

  .hero-overlay .lead {
    font-size: 1rem;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }

  .cookie-banner .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cookie-banner .btn:last-child {
    margin-bottom: 0;
  }
}
