body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding-top: 70px;
  color: #212529;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-section {
  padding: 100px 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.25rem;
}

.features-section {
  background-color: #f8f9fa;
}

.feature-box {
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

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

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

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

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

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
  transition: all 0.3s ease;
}

.btn-outline-success:hover {
  background-color: #28a745;
  border-color: #28a745;
  color: #fff;
  transform: translateY(-2px);
}

.cta-section {
  background-color: #28a745;
}

.footer {
  background-color: #212529;
}

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

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

.page-header {
  padding-top: 100px;
  padding-bottom: 50px;
}

.policy-content {
  line-height: 1.8;
}

.policy-content h2 {
  color: #212529;
  margin-top: 2rem;
}

.policy-content h4 {
  color: #495057;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  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: #fff;
  text-decoration: underline;
}

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

.contact-info strong {
  display: block;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

  .page-header {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .thank-you-section {
    padding: 100px 0;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 60px;
  }

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

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

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

  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

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

  .display-5 {
    font-size: 1.75rem;
  }
}
