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

.navbar-brand img {
  height: 40px;
}

.navbar-light .navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #0066cc;
}

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

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

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

.btn-primary {
  background-color: #0066cc;
  border-color: #0066cc;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0052a3;
  border-color: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-outline-primary {
  color: #0066cc;
  border-color: #0066cc;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #0066cc;
  border-color: #0066cc;
  transform: translateY(-2px);
}

.categories-section {
  padding: 60px 0;
}

.category-card {
  background: #fff;
  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-card-large {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

.info-section {
  padding: 60px 0;
}

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

.cta-section {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #fff;
}

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

.cta-section .btn-primary {
  background-color: #fff;
  color: #0066cc;
  border-color: #fff;
}

.cta-section .btn-primary:hover {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #0052a3;
}

.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-weight: 600;
  margin-bottom: 15px;
}

.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.breadcrumb {
  background: transparent;
}

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

.breadcrumb-item a:hover {
  text-decoration: underline;
}

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

.contact-info-box {
  background: #f8f9fa;
  border-left: 4px solid #0066cc;
}

.thank-you-section {
  min-height: 400px;
  display: flex;
  align-items: center;
}

.thank-you-icon {
  display: inline-block;
}

.footer {
  background-color: #212529;
}

.footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

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

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

.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 p {
  margin: 0;
  font-size: 14px;
}

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

.cookie-banner .btn-light {
  background-color: #fff;
  color: #212529;
}

.cookie-banner .btn-outline-light {
  border-color: #fff;
  color: #fff;
}

.cookie-banner .btn-outline-light:hover {
  background-color: #fff;
  color: #212529;
}

.content-section h2 {
  color: #212529;
  font-weight: 600;
  margin-bottom: 20px;
}

.content-section h3 {
  color: #212529;
  font-weight: 600;
  margin-bottom: 15px;
}

.content-section h4 {
  color: #495057;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-banner {
  background-color: #e7f3ff;
  border-left: 4px solid #0066cc;
}

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

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

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

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

  .cookie-banner .btn {
    margin-top: 10px;
    width: 100%;
  }
}
