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

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.page-header {
  background-color: #f8f9fa;
  padding: 120px 0 60px;
  margin-bottom: 0;
}

.feature-box {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

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

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

.value-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.btn-warning: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-dark {
  border-color: #212529;
  color: #212529;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

.contact-form-wrapper {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid #dee2e6;
  border-radius: 4px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

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

.contact-info {
  background-color: #ffffff;
  padding: 1.5rem;
  border-left: 4px solid #ffc107;
}

.thank-you-section {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
}

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

.legal-content h2,
.legal-content h3 {
  color: #212529;
  margin-top: 2rem;
}

.legal-content ul {
  padding-left: 1.5rem;
}

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

.legal-content a {
  color: #ffc107;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #ffb300;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: #ffffff;
  padding: 1.5rem 0;
  z-index: 1050;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

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

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

footer {
  border-top: 1px solid #dee2e6;
}

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

footer a:hover {
  color: #ffc107;
}

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

  .page-header {
    padding: 100px 0 40px;
    text-align: center;
  }

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

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

@media (max-width: 576px) {
  .display-3 {
    font-size: 2rem;
  }

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