body {
  background-color: #ffffff;
}

/* Base Headings - matching clean AuraAi style */
h1, h2, h3, h4, h5, h6 {
  text-transform: lowercase;
  font-weight: 700;
}

h1::first-letter, h2::first-letter, h3::first-letter, 
h4::first-letter, h5::first-letter, h6::first-letter {
  text-transform: uppercase;
}

/* Hero Section */
.faq-hero {
  padding: 50px 0 80px; /* Reduced for AuraHost V2 Header + Spacer */
  background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('/assets/images/backgrounds/background-blauw-2.webp');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  text-align: center;
}

.faq-search-container {
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
}

.faq-search-container input {
  height: 60px;
  border-radius: 50px;
  padding-left: 30px;
  padding-right: 60px;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.faq-search-container i {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-primary);
}

/* Quick Question Cards */
.top-questions {
  padding: 60px 0;
  background: #f8f9fa;
}

.top-q-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  border-bottom: 4px solid transparent;
  text-align: center;
}

.top-q-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.top-q-card i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  display: block;
}

.top-q-card h5 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Accordion Specifics */
.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.accordion-button {
  font-size: 1.1rem;
  padding: 20px 25px;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: var(--color-primary);
  box-shadow: none;
}

.accordion-button:hover {
  background-color: #f8f9fa;
}

.faq-item-hidden {
  display: none !important;
}

/* CTA & Form */
.hero-form-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  color: #333;
  border: 1px solid #eee;
}

.hero-form-container h4 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-form-container .form-control {
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.hero-form-container .btn-submit {
  background: var(--color-primary);
  color: #ffffff;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.hero-form-container .btn-submit:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.hero-expert {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.hero-expert img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
}

.hero-expert-text {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  text-align: left;
}

.hero-expert-text strong {
  display: block;
  color: #333;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  margin-top: 20px;
  color: #333;
}

.trust-badge i {
  color: #28a745;
  font-size: 24px;
}

.trust-badge span {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

/* Mobile Sticky CTA */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 12px 20px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 9998;
  display: none;
  align-items: center;
  border-top: 2px solid var(--color-primary);
}

@media (max-width: 991px) {
  .sticky-mobile-cta { display: flex; }
}

.sticky-mobile-cta .btn-cta {
  background: var(--color-primary);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  flex-grow: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .faq-hero h1 { font-size: 32px !important; }
}
