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

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

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

.page-header {
  border-bottom: 3px solid #dc3545;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
  transition: all 0.3s ease;
}

.btn-outline-danger:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff;
  transform: translateY(-2px);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.text-danger {
  color: #dc3545;
}

.cta-section {
  background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
}

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

footer a:hover {
  opacity: 0.8;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.icon-box,
.advantage-item,
.value-box,
.step-box,
.feature-box {
  transition: transform 0.3s ease;
}

.icon-box:hover,
.advantage-item:hover,
.value-box:hover,
.step-box:hover,
.feature-box:hover {
  transform: scale(1.05);
}

.service-card img,
.product-card img {
  height: 250px;
  object-fit: cover;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #343a40;
  color: #fff;
  padding: 20px 0;
  z-index: 9999;
  display: none;
}

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

.min-vh-75 {
  min-height: 75vh;
}

.thank-you-box {
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.table {
  background-color: #fff;
}

.thead-light th {
  background-color: #f8f9fa;
  border-color: #dee2e6;
}
