* {
  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.75rem;
  letter-spacing: -0.5px;
}

.navbar {
  border-bottom: 1px solid #e9ecef;
}

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

.nav-link:hover {
  color: #007bff;
}

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

.hero-section h1 {
  color: #212529;
  line-height: 1.2;
}

.hero-section .lead {
  color: #495057;
  font-size: 1.15rem;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-outline-primary {
  border: 2px solid #007bff;
  color: #007bff;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.benefit-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

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

.product-info h5,
.product-info h4 {
  color: #212529;
  margin-bottom: 12px;
}

.product-info p {
  color: #6c757d;
  font-size: 0.95rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #007bff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-card p:first-child {
  font-style: italic;
  color: #495057;
}

.cta-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.footer {
  background-color: #212529;
  color: #ffffff;
}

.footer h5 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.footer a:hover {
  color: #ffffff;
}

.cookie-banner {
  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-banner.show {
  display: block;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

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

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

.value-card,
.tip-card,
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover,
.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.contact-info-box {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #e9ecef;
}

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

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.1);
}

.thank-you-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto;
}

.step-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto;
}

.policy-text {
  font-size: 1rem;
  line-height: 1.8;
}

.policy-text h3 {
  color: #212529;
}

.policy-text p,
.policy-text li {
  color: #495057;
}

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

.policy-text a {
  color: #007bff;
  text-decoration: none;
}

.policy-text a:hover {
  text-decoration: underline;
}

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

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

  .navbar-brand {
    font-size: 1.5rem;
  }

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

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

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

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