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

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

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

.hero-section h1 {
  color: #2d3748;
}

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

.category-card {
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-card h3 {
  color: #2d3748;
  margin-bottom: 15px;
}

.category-card-large {
  padding: 30px;
  border-radius: 8px;
  background-color: #f8f9fa;
  height: 100%;
}

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

.info-box {
  padding: 20px;
}

.info-icon {
  font-size: 3rem;
  color: #28a745;
}

.cta-section {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
}

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

.footer {
  background-color: #2d3748;
}

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

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

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

.breadcrumb {
  background-color: transparent;
}

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

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

.product-card {
  padding: 25px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product-card h3 {
  color: #2d3748;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.product-card p {
  flex-grow: 1;
  margin-bottom: 15px;
}

.product-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.product-features li {
  padding: 5px 0;
  color: #6c757d;
}

.product-features li:before {
  content: "✓ ";
  color: #28a745;
  font-weight: bold;
  margin-right: 8px;
}

.value-box {
  height: 100%;
}

.contact-card {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-box {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.business-hours {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-box {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.success-icon {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.policy-content h2 {
  color: #2d3748;
}

.policy-content h4 {
  color: #495057;
}

.policy-content p {
  margin-bottom: 15px;
}

.policy-content ul {
  margin-bottom: 20px;
}

.policy-content ul li {
  margin-bottom: 8px;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.custom-list li:before {
  content: "→";
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2d3748;
  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;
}

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

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  background-color: #28a745;
  border-color: #28a745;
  color: #fff;
}

.text-success {
  color: #28a745 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

.alert {
  border-radius: 8px;
}

.form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

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

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

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

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

  .category-card,
  .product-card {
    margin-bottom: 20px;
  }
}
