* {
  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.5rem;
  color: #212529 !important;
}

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

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

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

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

.hero-section .lead {
  color: #495057;
}

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

.btn-warning:hover {
  background-color: #ffb300;
  border-color: #ffb300;
  color: #212529;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-outline-dark {
  border: 2px solid #212529;
  color: #212529;
  font-weight: 600;
  padding: 10px 28px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #212529;
  color: #ffffff;
  transform: translateY(-2px);
}

.categories-section {
  background-color: #ffffff;
}

.category-card {
  background: #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;
}

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

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

.category-content {
  padding: 30px;
}

.category-content h3 {
  color: #212529;
  margin-bottom: 15px;
}

.category-content p {
  color: #6c757d;
  margin-bottom: 20px;
}

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

.info-card {
  padding: 30px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
}

.info-icon {
  font-size: 3rem;
}

.info-card h4 {
  color: #212529;
  margin-bottom: 15px;
}

.info-card p {
  color: #6c757d;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #212529;
}

.cta-section h2 {
  color: #212529;
}

.footer {
  background-color: #212529;
}

.footer h5 {
  color: #ffc107;
  margin-bottom: 20px;
}

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

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

.page-header {
  background-color: #f8f9fa;
}

.page-header h1 {
  color: #212529;
}

.page-header .lead {
  color: #6c757d;
}

.breadcrumb {
  background-color: transparent;
}

.breadcrumb-item a {
  color: #495057;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #ffc107;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.product-card {
  background: #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;
  height: 100%;
}

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

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

.product-content {
  padding: 25px;
}

.product-content h4 {
  color: #212529;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

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

.category-showcase {
  padding: 30px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.value-card:hover {
  transform: translateY(-3px);
}

.value-icon {
  font-size: 3rem;
}

.contact-info-box {
  background-color: #f8f9fa;
}

.bg-warning-light {
  background-color: #fff3cd;
}

.form-control {
  border: 2px solid #dee2e6;
  padding: 12px;
  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);
}

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

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

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

.next-steps {
  background-color: #f8f9fa;
}

.policy-section h2 {
  color: #212529;
  border-bottom: 3px solid #ffc107;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.policy-section h4 {
  color: #495057;
  margin-top: 20px;
}

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

.policy-section li {
  margin-bottom: 8px;
  color: #495057;
}

.policy-section a {
  color: #ffc107;
  text-decoration: none;
  font-weight: 600;
}

.policy-section a:hover {
  color: #ffb300;
  text-decoration: underline;
}

.alert {
  border-radius: 8px;
  border: none;
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
}

.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-link {
  color: #ffc107;
  text-decoration: underline;
}

.cookie-link:hover {
  color: #ffb300;
}

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

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

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

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

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

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

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

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

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