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

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

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

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

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

.hero-section h1 {
  color: #1e40af;
}

.btn-primary {
  background-color: #2563eb;
  border-color: #2563eb;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary {
  color: #2563eb;
  border-color: #2563eb;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  transform: translateY(-2px);
}

.info-card,
.technique-card,
.relaxation-card,
.benefit-card,
.value-card,
.testimonial-card,
.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover,
.technique-card:hover,
.relaxation-card:hover,
.benefit-card:hover,
.value-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  color: #2563eb;
  font-weight: bold;
}

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

.product-card {
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

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

.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-body {
  background: #fff;
}

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

.product-features li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.product-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.footer {
  background-color: #1f2937;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fff !important;
}

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

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

.cookie-banner a {
  color: #60a5fa;
  text-decoration: underline;
}

.cookie-banner .btn-light {
  background-color: #fff;
  color: #1f2937;
  border: none;
  padding: 8px 24px;
  font-weight: 600;
}

.cookie-banner .btn-outline-light {
  color: #fff;
  border-color: #fff;
  padding: 8px 24px;
  font-weight: 600;
}

.cookie-banner .btn-outline-light:hover {
  background-color: #fff;
  color: #1f2937;
}

.page-header {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.contact-form-wrapper {
  background-color: #f9fafb;
}

.form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: #2563eb;
  border-color: #2563eb;
}

.policy-text h2,
.policy-text h3 {
  color: #1e40af;
}

.policy-text ul {
  margin-left: 20px;
}

.policy-text a {
  color: #2563eb;
  text-decoration: underline;
}

.policy-text a:hover {
  color: #1d4ed8;
}

.info-box {
  border-left: 4px solid #2563eb;
}

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

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #2563eb;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 1.2rem;
}

.thank-you-content {
  background-color: #f9fafb;
}

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

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

  .display-4 {
    font-size: 2rem;
  }

  .product-img {
    height: 200px;
  }

  .cookie-banner .btn {
    margin-top: 10px;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }

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