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

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

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

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

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

.btn-primary: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;
}

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

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

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

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

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

.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-icon {
  font-size: 3rem;
  color: #ffc107;
}

.feature-icon {
  font-size: 2.5rem;
  color: #ffc107;
}

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

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

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

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

.category-showcase img {
  width: 100%;
  height: auto;
}

.product-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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-card .card-body {
  padding: 20px;
}

.product-card .card-title {
  color: #212529;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.product-card .card-text {
  color: #6c757d;
  margin-bottom: 15px;
}

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

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

.tip-number {
  width: 50px;
  height: 50px;
  background-color: #ffc107;
  color: #212529;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.contact-info-box,
.contact-form-box {
  border-radius: 8px;
}

.contact-item h5 {
  color: #212529;
  margin-bottom: 10px;
}

.contact-item p,
.contact-item a {
  color: #495057;
}

.contact-item a:hover {
  color: #ffc107;
  text-decoration: none;
}

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

.thank-you-content {
  border-radius: 8px;
}

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

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

.policy-section h4,
.policy-section h5 {
  color: #212529;
}

.policy-section p,
.policy-section li {
  color: #495057;
  line-height: 1.8;
}

.footer {
  background-color: #212529;
}

.footer h5,
.footer h6 {
  color: #ffffff;
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffc107;
  text-decoration: none;
}

.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.2);
  display: none;
}

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

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

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

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

.breadcrumb {
  background-color: transparent;
}

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

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

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

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

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

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

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