* {
  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: #2c3e50;
  background-color: #ffffff;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #2c3e50 !important;
  font-weight: 700;
}

.nav-link {
  color: #2c3e50 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

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

.btn-primary {
  background-color: #f39c12;
  border-color: #f39c12;
  color: #2c3e50;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e67e22;
  border-color: #e67e22;
  color: #2c3e50;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.btn-outline-primary {
  border-color: #f39c12;
  color: #f39c12;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: #f39c12;
  border-color: #f39c12;
  color: #2c3e50;
}

.btn-secondary {
  background-color: #7f8c8d;
  border-color: #7f8c8d;
  color: #ffffff;
}

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

.hero h1 {
  color: #2c3e50;
  font-weight: 700;
}

.hero .lead {
  color: #555;
  font-size: 1.25rem;
}

.benefits {
  background-color: #ffffff;
}

.benefit-card {
  background-color: #fef9f0;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.benefit-icon .icon-circle {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #f39c12;
  color: #2c3e50;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid #ecf0f1;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-body h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.testimonial-card {
  background-color: #fef9f0;
  border-left: 4px solid #f39c12;
  border-radius: 8px;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}

.testimonial-author {
  color: #2c3e50;
  font-weight: 600;
}

.cta {
  background-color: #f39c12;
}

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

.page-header h1 {
  color: #2c3e50;
  font-weight: 700;
}

.contact-info-box {
  background-color: #fef9f0;
  border-radius: 8px;
  border-left: 4px solid #f39c12;
}

.form-control:focus {
  border-color: #f39c12;
  box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}

.form-check-input:checked {
  background-color: #f39c12;
  border-color: #f39c12;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fdfcfb 0%, #fef9f0 100%);
}

.thank-you-box {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.success-icon .checkmark {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #f39c12;
  color: #2c3e50;
  border-radius: 50%;
  font-size: 3rem;
  font-weight: 700;
}

.legal-content h2 {
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  border-bottom: 2px solid #f39c12;
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  color: #2c3e50;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

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

.tip-card {
  background-color: #ffffff;
  border: 1px solid #ecf0f1;
  border-radius: 8px;
  border-left: 4px solid #f39c12;
}

.footer {
  background-color: #2c3e50;
}

.footer h5 {
  color: #f39c12;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ffffff;
  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: 0;
  font-size: 0.95rem;
}

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

.cookie-banner a:hover {
  color: #e67e22;
}

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

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

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

  .product-image {
    height: 220px;
  }

  .btn-primary,
  .btn-outline-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

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

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.25rem;
  }

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

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

  .product-image {
    height: 200px;
  }
}
