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

.navbar {
  background-color: #ffffff;
  border-bottom: 2px solid #dc3545;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: #dc3545 !important;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: #1a1a1a !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #dc3545 !important;
}

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  border-bottom: 3px solid #dc3545;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.25rem;
  color: #495057;
  margin-bottom: 2rem;
}

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

.btn-primary:hover {
  background-color: #c82333;
  border-color: #bd2130;
  transform: translateY(-2px);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #dc3545;
}

.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  background-color: #ffffff;
}

.product-card:hover {
  box-shadow: 0 8px 16px rgba(220, 53, 69, 0.15);
  transform: translateY(-5px);
  border-color: #dc3545;
}

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

.product-card-body {
  padding: 1.5rem;
}

.product-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.product-card-text {
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-box {
  padding: 2rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.feature-box:hover {
  border-color: #dc3545;
  box-shadow: 0 6px 12px rgba(220, 53, 69, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: #dc3545;
  margin-bottom: 1rem;
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

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

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

.footer-bottom {
  border-top: 1px solid #495057;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: #adb5bd;
}

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

.form-control:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 1rem;
}

.cookie-banner .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.legal-content {
  padding: 3rem 0;
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.legal-content p,
.legal-content li {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-left: 2rem;
}

.thank-you-section {
  padding: 4rem 0;
  text-align: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: #dc3545;
  margin-bottom: 1.5rem;
}

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

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

  .section-title {
    font-size: 1.5rem;
  }

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

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