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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #212529;
  background-color: #ffffff;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #212529 !important;
}

.nav-link {
  color: #495057 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffc107 !important;
}

.btn-primary {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #ffb300;
  border-color: #ffb300;
  color: #212529;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

.btn-outline-primary {
  border-color: #ffc107;
  color: #ffc107;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
}

.btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #212529;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-header {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
  height: 250px;
  object-fit: cover;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.benefit-card {
  padding: 20px;
}

.benefit-icon {
  display: inline-block;
}

.technique-card {
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.cta-section {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #212529;
}

.cta-section h2 {
  color: #212529;
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  padding: 12px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.footer {
  margin-top: 60px;
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffc107 !important;
  text-decoration: none;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: #ffffff;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-consent a {
  color: #ffc107;
  text-decoration: underline;
}

.policy-content h2 {
  margin-top: 30px;
}

.policy-content h3 {
  margin-top: 20px;
}

.policy-content ul {
  padding-left: 25px;
}

.policy-content li {
  margin-bottom: 8px;
}

.faq-item {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.contact-info,
.business-hours {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

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

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

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

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

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

  .product-card img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
