* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.navbar-brand {
  font-size: 1.8rem;
  letter-spacing: 1px;
}

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

.nav-link:hover {
  color: #dc3545 !important;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  max-height: 600px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

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

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

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

.benefit-box,
.who-box {
  transition: transform 0.3s ease;
}

.benefit-box:hover,
.who-box:hover {
  transform: translateY(-3px);
}

.testimonial-card {
  border-left: 4px solid #dc3545;
}

.faq-item {
  border-left: 3px solid #dc3545;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.principle-card {
  transition: transform 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-5px);
}

.disclaimer-box {
  border-left: 5px solid #ffc107;
}

.contact-form-wrapper {
  border-left: 5px solid #dc3545;
}

.form-control:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.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 5px 15px 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;
}

.thank-you-content {
  animation: fadeInUp 0.5s ease;
}

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

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

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

footer {
  margin-top: auto;
}

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

footer a:hover {
  color: #dc3545 !important;
}

.policy-content {
  line-height: 1.8;
}

.policy-content h2 {
  color: #dc3545;
  border-bottom: 2px solid #dc3545;
  padding-bottom: 10px;
}

.policy-content h4 {
  color: #333;
  margin-top: 20px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

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

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

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

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.5rem;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
