:root {
  --primary-color: #2d3436;
  --secondary-color: #f4e8c1;
  --accent-color: #e8b44d;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --bg-light: #fdfcf8;
  --white: #ffffff;
  --border-color: #e8dcc4;
}

* {
  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(--white);
}

.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background-color: var(--white);
}

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

.navbar-brand:hover {
  color: var(--accent-color);
}

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

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

.hero-section {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(to right, rgba(253, 252, 248, 0.95), rgba(253, 252, 248, 0.7));
  width: 100%;
  padding: 4rem 0;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.page-header {
  background: linear-gradient(135deg, var(--secondary-color), var(--bg-light));
  padding: 8rem 0 4rem;
  margin-top: 70px;
  text-align: center;
}

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

.page-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

.content-section p {
  color: var(--text-light);
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
}

.content-section ul {
  color: var(--text-light);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-section ul li {
  margin-bottom: 0.75rem;
}

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

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

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 180, 77, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.875rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 4px;
  background-color: transparent;
}

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

.btn-outline-secondary {
  border: 2px solid var(--text-light);
  color: var(--text-light);
  background-color: transparent;
}

.btn-outline-secondary:hover {
  background-color: var(--text-light);
  color: var(--white);
}

.link-arrow {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.link-arrow:after {
  content: " →";
}

.link-arrow:hover {
  transform: translateX(5px);
  color: var(--primary-color);
}

.info-card,
.product-card,
.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
  color: var(--primary-color);
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

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

.testimonial-card {
  background: linear-gradient(135deg, var(--bg-light), var(--white));
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.principle-card {
  background: var(--white);
  padding: 2rem;
  border-left: 4px solid var(--accent-color);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.principle-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.principle-box {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 8px;
  height: 100%;
}

.principle-box h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.technique-list li {
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--bg-light);
  border-radius: 4px;
  border-left: 4px solid var(--accent-color);
}

.faq-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.faq-item h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form-container {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 8px;
}

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

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

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(232, 180, 77, 0.1);
}

.policy-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color), var(--bg-light));
  padding: 5rem 0;
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer h5 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

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

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

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

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

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

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

.cookie-banner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

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

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

  .hero-overlay {
    background: rgba(253, 252, 248, 0.95);
  }

  .navbar-collapse {
    background: var(--white);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}

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

  .hero-content h1 {
    font-size: 1.875rem;
  }

  .hero-content p {
    font-size: 1.0625rem;
  }

  .page-header {
    padding: 6rem 0 3rem;
  }

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

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

  .content-section h2 {
    font-size: 1.625rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .cookie-banner .btn {
    margin-top: 1rem;
    display: block;
    width: 100%;
  }
}
