/* WOW/PROFESSIONAL CSS for FAQ/Services Page */

.faq-hero {
  position: relative;
  min-height: 480px;
  background-color: #23305a;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 16px 32px 16px;
  margin-bottom: 0;
  overflow: hidden;
}

.faq-hero .container,
.faq-hero .content-section,
.container.over-ons-page,
.content-section {
  background: none !important;
}

.faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.32) 0%, rgba(41,80,185,0.13) 100%);
  z-index: 1;
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.faq-hero-icon {
  font-size: 3.5rem;
  color: #2950b9;
  margin-bottom: 12px;
}

.faq-hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35), 0 1px 0 #2950b9;
  margin-bottom: 8px;
}

.faq-hero-subtitle {
  font-size: 1.15rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.28), 0 1px 0 #2950b9;
  margin-bottom: 0;
}

/* FAQ Accordion/Card Layout */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 36px 0 16px 0;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(41,80,185,0.09);
  padding: 28px 24px 20px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  border-left: 5px solid #2950b9;
  animation: wowfadeinfaq 1.1s cubic-bezier(.23,1.12,.59,1) both;
}

.faq-item:hover {
  box-shadow: 0 8px 32px 0 rgba(41,80,185,0.14);
  transform: translateY(-3px) scale(1.01);
}

.faq-item h2 {
  font-size: 1.25rem;
  color: #2950b9;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item .faq-icon {
  font-size: 1.35rem;
  color: #2950b9;
}

.faq-item p {
  color: #222;
  font-size: 1.07rem;
  margin-bottom: 0;
}

@keyframes wowfadeinfaq {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}


.city-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  column-count: 2;
  column-gap: 20px;
}

.city-list li {
  padding: 4px 0;
  font-size: 1.05rem;
  color: #333;
  break-inside: avoid-column; /* Prevents list items from breaking across columns */
}

.city-list li::before {
  content: '\f3c5'; /* FontAwesome map marker icon */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #2950b9;
  margin-right: 10px;
}

/* Responsive Tweaks for City List */
@media (max-width: 500px) {
  .city-list {
    column-count: 1;
  }
}

/* Contact Block */
.faq-contact-block {
  background: #f7fafc;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(41,80,185,0.07);
  padding: 32px 20px 22px 20px;
  margin: 40px 0 0 0;
  text-align: center;
}

.faq-contact-block h2 {
  color: #2950b9;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* Responsive Tweaks */
@media (max-width: 700px) {
  .faq-hero-title { font-size: 1.4rem; }
  .faq-hero-content { padding: 0 4px; }
  .faq-item { padding: 18px 8px 14px 8px; }
}
