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

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

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #007bff !important;
}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  color: #495057;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #007bff;
}

.navbar-nav .nav-link.active {
  color: #007bff;
}

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

.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  margin-bottom: 0;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}

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

.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) !important;
}

.benefits-list li,
.values-list li,
.custom-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.benefits-list li:before,
.values-list li:before,
.custom-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
}

.footer {
  background-color: #212529;
  color: #adb5bd;
  padding: 60px 0 20px;
}

.footer h5 {
  color: white;
}

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

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

.service-detail {
  padding: 40px 0;
}

.benefit-card {
  padding: 30px;
  border-left: 4px solid #007bff;
  background-color: #f8f9fa;
  margin-bottom: 20px;
}

.benefit-card h5 {
  color: #007bff;
  margin-bottom: 15px;
}

.approach-item {
  padding: 25px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-info-card {
  padding: 25px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.step-card {
  padding: 30px 20px;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
}

.thank-you-card {
  padding: 60px 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.success-icon {
  display: flex;
  justify-content: center;
}

.hover-card:hover {
  transform: translateY(-3px);
  transition: transform 0.3s ease;
}

.policy-content {
  font-size: 1rem;
  line-height: 1.8;
}

.policy-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #212529;
}

.policy-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #495057;
}

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

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

.form-control {
  border: 2px solid #e9ecef;
  padding: 12px 16px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

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

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-outline-primary {
  border: 2px solid #007bff;
  color: #007bff;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: white;
  transform: translateY(-2px);
}

.btn-light {
  background-color: white;
  color: #007bff;
  border: 2px solid white;
  font-weight: 600;
}

.btn-light:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

  .page-header {
    padding: 100px 0 40px;
  }

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

  .section-title {
    font-size: 2rem;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
}

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

  .section-title {
    font-size: 1.75rem;
  }

  .btn-lg {
    padding: 10px 25px;
    font-size: 1rem;
  }

  .thank-you-card {
    padding: 40px 20px;
  }
}
