/* FAQ Page Custom Styles */
.faq-hero-section {
  position: relative;
  background: linear-gradient(90deg, #220109 60%, #003366 100%);
  margin-top: 70px;
  height: 400;
  width: 100%;
  overflow: hidden;
  min-height: 220px;
}

.faq-hero-section .faq-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400;
  background: url('../images/blueprints-1837238_1280.jpg') center/cover no-repeat;
  opacity: 0.08;
  z-index: 1;
}

.faq-hero-section .container {
  position: relative;
  z-index: 2;
}

.faq-hero-section h1,
.faq-hero-section p {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.faq-cta-section {
  background: #FFD700;
  color: #222;
  border-bottom: 1px solid #ffe066;
}

.faq-cta-section .btn-primary {
  background: #800020;
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 2rem;
  transition: background 0.2s, color 0.2s;
}

.faq-cta-section .btn-primary:hover {
  background: #003366;
  color: #FFD700;
}

.faq-cta-section .btn-outline-dark {
  border-radius: 2rem;
  font-weight: 600;
}

.faq-section {
  background: #f8f9fa;
}

.faq-section .section-title {
  color: #800020;
  font-size: 2rem;
  font-weight: 700;
}

.faq-section .accordion-item {
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: none;
  overflow: hidden;
}

.faq-section .accordion-button {
  font-weight: 600;
  color: #003366;
  background: #fff;
  border: none;
  box-shadow: none;
  transition: background 0.2s;
}

.faq-section .accordion-button:not(.collapsed) {
  background: #FFD700;
  color: #800020;
}

.faq-section .accordion-body {
  background: #fff;
  color: #333;
}

.why-choose-us-section {
  background: #fff;
  border-top: 1px solid #eee;
}

.why-choose-us-section .section-title {
  color: #003366;
  font-size: 2rem;
  font-weight: 700;
}

.why-choose-us-section .card {
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}

.why-choose-us-section .card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(128, 0, 32, 0.12), 0 1.5px 6px rgba(0, 0, 0, 0.06);
}

.why-choose-us-section .card-title {
  color: #800020;
  font-size: 1.2rem;
  font-weight: 700;
}

.why-choose-us-section .card-body i {
  margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
  .faq-hero-section {
    min-height: 140px;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .why-choose-us-section .card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .faq-hero-section h1 {
    font-size: 2rem;
  }

  .faq-section .section-title,
  .why-choose-us-section .section-title {
    font-size: 1.3rem;
  }
}