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

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

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

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

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

.btn-primary {
  background-color: #ff7f2a;
  border-color: #ff7f2a;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e66d1a;
  border-color: #e66d1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 127, 42, 0.3);
}

.btn-outline-primary {
  color: #ff7f2a;
  border-color: #ff7f2a;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: #ff7f2a;
  border-color: #ff7f2a;
}

.text-primary {
  color: #ff7f2a !important;
}

.bg-primary {
  background-color: #ff7f2a !important;
}

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

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

.page-header {
  background: linear-gradient(135deg, #ff7f2a 0%, #e66d1a 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.page-header-small {
  background: linear-gradient(135deg, #ff7f2a 0%, #e66d1a 100%);
  color: white;
  padding: 60px 0 40px;
  text-align: center;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

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

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

.process-number {
  width: 70px;
  height: 70px;
  background-color: #ff7f2a;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0 auto;
}

.benefit-card {
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #ff7f2a;
  height: 100%;
}

.value-card {
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.service-detail-card {
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
}

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

.contact-info-box {
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #ff7f2a;
}

.contact-details-box {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #ff7f2a;
}

.cta-box {
  padding: 40px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #ff7f2a;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff7f2a;
}

.policy-section h5 {
  color: #2c3e50;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: white;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent.hidden {
  display: none;
}

.cookie-consent a {
  color: white;
  text-decoration: underline;
}

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

.btn-group-custom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

footer {
  margin-top: 60px;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ff7f2a !important;
  text-decoration: none;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

.shadow {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.rounded {
  border-radius: 8px !important;
}

.form-control:focus {
  border-color: #ff7f2a;
  box-shadow: 0 0 0 0.2rem rgba(255, 127, 42, 0.25);
}

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

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
  padding: 12px;
}

.table thead th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #2c3e50;
}

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

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

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

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

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

  .lead {
    font-size: 1rem;
  }

  .btn-group-custom {
    flex-direction: column;
  }

  .btn-group-custom .btn {
    width: 100%;
  }
}

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

  .step-number,
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}
