* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #c9a87f;
  --primary-dark: #a8896a;
  --secondary-color: #8b7d6b;
  --text-dark: #2c2520;
  --text-light: #6b6560;
  --bg-light: #faf8f5;
  --bg-cream: #f5f1ec;
  --white: #ffffff;
  --border-color: #e6dfd6;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  padding-top: 76px;
}

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-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark) !important;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 127, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #6b6058;
  border-color: #6b6058;
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 37, 32, 0.7) 0%, rgba(44, 37, 32, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 4rem 0;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--bg-light);
}

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

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

.page-header {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  margin-bottom: 0;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.feature-card,
.info-card,
.guide-card,
.texture-card,
.ingredient-card,
.tip-card,
.routine-card,
.mission-card,
.principle-card,
.advantage-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.info-card:hover,
.guide-card:hover,
.texture-card:hover,
.ingredient-card:hover,
.tip-card:hover,
.routine-card:hover,
.mission-card:hover,
.principle-card:hover,
.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-card h3,
.info-card h3,
.guide-card h3,
.texture-card h4,
.ingredient-card h4,
.tip-card h4,
.routine-card h3,
.mission-card h3,
.principle-card h3,
.advantage-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

.custom-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: var(--text-light);
}

.custom-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.cleaning-steps,
.educational-list,
.disclaimer-list {
  padding-left: 1.5rem;
}

.cleaning-steps li,
.educational-list li,
.disclaimer-list li {
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--primary-color);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

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

.faq-item p {
  margin-bottom: 0;
}

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

.cta-section h2,
.cta-section .lead {
  color: var(--white);
}

.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);
  border-color: var(--bg-light);
  color: var(--primary-dark);
}

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

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

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

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  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 p {
  color: var(--white);
  margin-bottom: 0;
}

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

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(201, 168, 127, 0.25);
}

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

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

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

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

.contact-item h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  margin-bottom: 0;
}

.contact-item a {
  color: var(--primary-color);
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.thank-you-content {
  background: var(--bg-light);
  padding: 4rem 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.legal-content h3 {
  margin-top: 2rem;
  color: var(--secondary-color);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
}

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

.legal-content .alert {
  border-radius: 10px;
}

.disclaimer-box {
  background: var(--bg-cream);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
}

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

  .nav-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

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

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

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

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

.img-fluid {
  border-radius: 10px;
}
