/* ==========================================================================
   ATHENA BEHAVIORAL HEALTH - FAQ PAGE STYLES
   Engineered for high performance, smooth micro-interactions, and accessibility.
   ========================================================================== */

:root {
  --faq-navy-dark: #071326;
  --faq-navy: #0d2345;
  --faq-navy-text: #0f1e36;
  --faq-blue-primary: #1473ff;
  --faq-blue-hover: #0b5fd6;
  --faq-blue-light: #eef6ff;
  --faq-blue-subtle: #f4f8fd;
  --faq-blue-border: #d2e4ff;
  --faq-text-muted: #5a6a80;
  --faq-text-body: #334155;
  --faq-card-bg: #ffffff;
  --faq-page-bg: #f8fafc;
  --faq-border: #e2e8f0;
  --faq-border-light: #edf2f7;
  --faq-shadow-sm: 0 4px 12px rgba(15, 30, 54, 0.04);
  --faq-shadow-md: 0 10px 30px rgba(20, 115, 255, 0.08);
  --faq-shadow-lg: 0 20px 40px rgba(15, 30, 54, 0.09);
  --faq-radius-sm: 10px;
  --faq-radius-md: 16px;
  --faq-radius-lg: 24px;
  --faq-radius-pill: 9999px;
  --faq-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page Canvas Background */
.faq-page-wrapper {
  background-color: var(--faq-page-bg);
  background-image: 
    radial-gradient(at 10% 10%, rgba(20, 115, 255, 0.04) 0px, transparent 50%),
    radial-gradient(at 90% 20%, rgba(14, 165, 233, 0.04) 0px, transparent 50%),
    radial-gradient(at 50% 90%, rgba(20, 115, 255, 0.03) 0px, transparent 50%);
  color: var(--faq-text-body);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  padding-bottom: 70px;
}

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */
.faq-breadcrumb-bar {
  padding: 18px 0 8px;
}

.faq-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--faq-text-muted);
}

.faq-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-breadcrumb a {
  color: var(--faq-text-muted);
  text-decoration: none;
  transition: var(--faq-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.faq-breadcrumb a:hover {
  color: var(--faq-blue-primary);
}

.faq-breadcrumb .separator {
  font-size: 11px;
  color: #94a3b8;
}

.faq-breadcrumb .active {
  color: var(--faq-blue-primary);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Athena Dark Hero Banner Section
   -------------------------------------------------------------------------- */
.faq-dark-hero {
  background: url('/assets/image/bg-page.png') no-repeat center center / cover, linear-gradient(135deg, #03152e 0%, #071f3d 100%);
  padding: 50px 0 45px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  margin-bottom: 28px;
}

.faq-dark-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 30%, rgba(20, 115, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.faq-hero-tag {
  color: #38bdf8;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.faq-hero-main-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.faq-trust-points {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.faq-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #e2e8f0;
}

.faq-trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  display: inline-block;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.9);
}

.faq-hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.faq-btn-book {
  background: linear-gradient(135deg, #1d2951, #24356b);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 13px 26px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: var(--faq-transition);
}

.faq-btn-book:hover {
  background: linear-gradient(135deg, #24356b, #1d2951);
  transform: translateY(-2px);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.faq-btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  border: none;
  padding: 13px 26px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: var(--faq-transition);
}

.faq-btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* Search Box Container in Dark Hero */
.faq-search-wrapper {
  max-width: 580px;
  position: relative;
  margin-top: 10px;
}

.faq-search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--faq-radius-pill);
  padding: 6px 8px 6px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--faq-transition);
}

.faq-search-box:focus-within {
  border-color: var(--faq-blue-primary);
  box-shadow: 0 0 0 4px rgba(20, 115, 255, 0.15), 0 8px 24px rgba(20, 115, 255, 0.08);
}

.faq-search-box i.search-icon {
  color: #94a3b8;
  font-size: 18px;
  margin-right: 12px;
}

.faq-search-input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 15px;
  color: var(--faq-navy-text);
  font-family: inherit;
}

.faq-search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.faq-search-btn {
  background: linear-gradient(135deg, #1473ff 0%, #0b5fd6 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--faq-radius-pill);
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(20, 115, 255, 0.3);
  transition: var(--faq-transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.faq-search-btn:hover {
  background: linear-gradient(135deg, #0b5fd6 0%, #0849a6 100%);
  box-shadow: 0 6px 18px rgba(20, 115, 255, 0.4);
  transform: translateY(-1px);
}

.faq-search-clear {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  display: none;
  transition: var(--faq-transition);
}

.faq-search-clear:hover {
  color: #ef4444;
}

/* Hero 3D Graphic Container */
.faq-hero-illustration-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}

.faq-hero-img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 15px 30px rgba(15, 30, 54, 0.12));
  transition: transform 0.4s ease;
}

.faq-hero-illustration-box:hover .faq-hero-img {
  transform: translateY(-4px) scale(1.02);
}

/* --------------------------------------------------------------------------
   Category Pills Navigation
   -------------------------------------------------------------------------- */
.faq-category-nav {
  margin-bottom: 28px;
}

.faq-category-pills {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.faq-category-pills::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.faq-category-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--faq-radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  background: #ffffff;
  color: var(--faq-navy-text);
  border: 1.5px solid var(--faq-border);
  box-shadow: 0 2px 8px rgba(15, 30, 54, 0.03);
  transition: var(--faq-transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.faq-category-btn i,
.faq-category-btn .cat-icon {
  font-size: 17px;
  color: var(--faq-blue-primary);
  transition: var(--faq-transition);
}

.faq-category-btn:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  transform: translateY(-1px);
}

.faq-category-btn.active {
  background: linear-gradient(135deg, #223265 0%, #223265 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(20, 115, 255, 0.28);
}

.faq-category-btn.active i,
.faq-category-btn.active .cat-icon {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Two-Column Main Content Layout
   -------------------------------------------------------------------------- */
.faq-main-layout {
  position: relative;
}

/* Left Sidebar */
.faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq-treatments-card {
  background: #ffffff;
  border-radius: var(--faq-radius-md);
  border: 1px solid var(--faq-border);
  box-shadow: var(--faq-shadow-sm);
  padding: 24px 20px;
  margin-bottom: 24px;
}

.faq-treatments-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--faq-navy-text);
  margin-bottom: 18px;
  padding-left: 6px;
  letter-spacing: -0.01em;
}

.faq-treatment-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-treatment-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--faq-radius-sm);
  background: transparent;
  color: #ffffff
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--faq-transition);
}

.faq-treatment-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-treatment-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--faq-blue-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--faq-blue-primary);
  flex-shrink: 0;
  transition: var(--faq-transition);
}

.faq-treatment-item:hover {
  background: #ffffff;
  /*color: #ffffff;*/
}

.faq-treatment-item:hover .faq-treatment-icon-box {
  background: var(--faq-blue-light);
  transform: scale(1.05);
}

.faq-treatment-item.active {
  background: #223265;
  border-color: #bfdbfe;
  color: #ffffff !important ;
  font-weight: 700;
}

.faq-treatment-item.active .faq-treatment-icon-box {
  background: #223265;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(20, 115, 255, 0.25);
}

.faq-treatment-chevron {
  font-size: 13px;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-treatment-item:hover .faq-treatment-chevron,
.faq-treatment-item.active .faq-treatment-chevron {
  color: var(--faq-blue-primary);
  transform: translateX(2px);
}

/* Need Immediate Help CTA Card */
.faq-help-cta-card {
  background: linear-gradient(145deg, #071326 0%, #0d2345 100%);
  border-radius: var(--faq-radius-md);
  padding: 24px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(7, 19, 38, 0.2);
}

.faq-help-cta-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(20, 115, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.faq-help-content {
  position: relative;
  z-index: 2;
}

.faq-help-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.faq-help-desc {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.45;
  margin-bottom: 18px;
}

.faq-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--faq-navy);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--faq-radius-pill);
  text-decoration: none;
  transition: var(--faq-transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-help-btn:hover {
  background: var(--faq-blue-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(20, 115, 255, 0.35);
}

.faq-help-icon-graphic {
  position: absolute;
  top: 20px;
  right: 18px;
  font-size: 42px;
  color: rgba(20, 115, 255, 0.35);
  filter: drop-shadow(0 0 12px rgba(20, 115, 255, 0.5));
}

/* --------------------------------------------------------------------------
   Right Column (FAQ Accordion Area)
   -------------------------------------------------------------------------- */
.faq-content-area {
  background: transparent;
}

.faq-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 8px;
}

.faq-section-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-current-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--faq-blue-light);
  border: 1.5px solid var(--faq-blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--faq-blue-primary);
}

.faq-current-treatment-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffff;
  margin: 0;
  letter-spacing: -0.015em;
}

.faq-expand-all-btn {
  background: transparent;
  border: none;
  color: var(--faq-blue-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--faq-radius-sm);
  transition: var(--faq-transition);
}

.faq-expand-all-btn:hover {
  background: var(--faq-blue-light);
}

/* Main FAQ Accordion */
.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.faq-item-card {
  background: #ffffff;
  border-radius: var(--faq-radius-md);
  border: 1px solid var(--faq-border);
  box-shadow: 0 2px 6px rgba(15, 30, 54, 0.02);
  overflow: hidden;
  transition: var(--faq-transition);
}

.faq-item-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 30, 54, 0.05);
}

.faq-item-card.is-open {
  border-color: #bfdbfe;
  box-shadow: 0 6px 20px rgba(20, 115, 255, 0.06);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--faq-navy-text);
  cursor: pointer;
  transition: var(--faq-transition);
  font-family: inherit;
}

.faq-question-btn h3 small,
.faq-question-btn .faq-question-title small,
.faq-question-btn span small {
  font-size: 12px !important;
  color: var(--faq-blue-primary) !important;
  margin-left: 8px !important;
  font-weight: 500 !important;
}
.faq-question-title{
      font-size: 16px !important;
      font-weight:700 !important;
      

}

.faq-question-btn:hover {
  color: var(--faq-blue-primary);
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--faq-blue-primary);
  flex-shrink: 0;
  margin-left: 16px;
  transition: var(--faq-transition);
}

.faq-item-card.is-open .faq-toggle-icon {
  color: var(--faq-blue-primary);
  transform: rotate(180deg);
}

.faq-answer-collapse {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.faq-item-card.is-open .faq-answer-collapse {
  max-height: 800px;
  opacity: 1;
}

.faq-answer-content {
  padding: 0 24px 20px;
}

.faq-answer-box {
  background: var(--faq-blue-subtle);
  border-radius: var(--faq-radius-sm);
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--faq-text-body);
  border-left: 3px solid var(--faq-blue-primary);
}

/* Secondary Treatment Group Headers (below active treatment) */
.faq-treatment-group-header {
  background: #ffffff;
  border-radius: var(--faq-radius-md);
  border: 1px solid var(--faq-border);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 12px;
  transition: var(--faq-transition);
}

.faq-treatment-group-header:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.faq-group-title-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-group-icon {
  font-size: 18px;
  color: var(--faq-blue-primary);
}

.faq-group-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--faq-navy-text);
  margin: 0;
}

.faq-group-toggle {
  font-size: 18px;
  color: var(--faq-blue-primary);
  font-weight: 600;
}

/* Search Highlights */
.faq-highlight {
  background-color: #fef08a;
  color: #854d0e;
  padding: 1px 4px;
  border-radius: 4px;
  font-weight: 700;
}

/* Empty Search State */
.faq-empty-search {
  background: #ffffff;
  border-radius: var(--faq-radius-md);
  border: 1px dashed #cbd5e1;
  padding: 48px 24px;
  text-align: center;
  display: none;
}

.faq-empty-search i {
  font-size: 48px;
  color: #94a3b8;
  margin-bottom: 14px;
}

.faq-empty-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--faq-navy-text);
  margin-bottom: 6px;
}

.faq-empty-desc {
  color: var(--faq-text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.faq-reset-btn {
  background: var(--faq-blue-light);
  color: var(--faq-blue-primary);
  border: 1px solid var(--faq-blue-border);
  padding: 8px 20px;
  border-radius: var(--faq-radius-pill);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--faq-transition);
}

.faq-reset-btn:hover {
  background: var(--faq-blue-primary);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Bottom Support Banner ("Still have questions?")
   -------------------------------------------------------------------------- */
.faq-support-banner {
  background: linear-gradient(135deg, #eef6ff 0%, #e0effe 100%);
  border: 1.5px solid #bfdbfe;
  border-radius: var(--faq-radius-lg);
  padding: 32px 40px;
  margin-top: 50px;
  box-shadow: 0 10px 30px rgba(20, 115, 255, 0.06);
}

.faq-support-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.faq-support-avatar-box {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq-support-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(15, 30, 54, 0.1);
}

.faq-support-chat-bubble {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--faq-blue-primary);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(20, 115, 255, 0.35);
}

.faq-support-main-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--faq-navy-text);
  margin-bottom: 6px;
}

.faq-support-main-content p {
  font-size: 15px;
  color: var(--faq-text-muted);
  margin-bottom: 18px;
}

.faq-support-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1473ff 0%, #095edb 100%);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: var(--faq-radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(20, 115, 255, 0.35);
  transition: var(--faq-transition);
}

.faq-support-contact-btn:hover {
  background: linear-gradient(135deg, #095edb 0%, #0747a6 100%);
  box-shadow: 0 6px 20px rgba(20, 115, 255, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.faq-support-divider {
  width: 1px;
  height: 80px;
  background: #cbd5e1;
}

.faq-support-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1.5px solid #cbd5e1;
  padding-left: 36px;
}

.faq-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: var(--faq-transition);
}

.faq-contact-item:hover {
  transform: translateX(4px);
}

.faq-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #bfdbfe;
  color: var(--faq-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(20, 115, 255, 0.1);
  transition: var(--faq-transition);
}

.faq-contact-item:hover .faq-contact-icon {
  background: var(--faq-blue-primary);
  color: #ffffff;
}

.faq-contact-label {
  font-size: 12px;
  color: var(--faq-text-muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.faq-contact-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--faq-navy-text);
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .faq-hero-card {
    padding: 32px 28px;
  }
  
  .faq-hero-title {
    font-size: 32px;
  }

  .faq-support-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-support-contacts-list {
    border-left: none;
    border-top: 1.5px solid #cbd5e1;
    padding-left: 0;
    padding-top: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .faq-hero-card {
    padding: 24px 20px;
    margin-bottom: 20px;
  }

  .faq-hero-title {
    font-size: 26px;
  }

  .faq-hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .faq-hero-illustration-box {
    margin-top: 24px;
    max-height: 180px;
  }

  .faq-search-box {
    padding: 4px 6px 4px 14px;
  }

  .faq-search-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  .faq-category-btn {
    padding: 10px 18px;
    font-size: 13.5px;
  }

  .faq-sidebar {
    position: static;
    margin-bottom: 24px;
  }

  .faq-current-treatment-title {
    font-size: 20px;
  }

  .faq-question-btn {
    padding: 14px 18px;
    font-size: 14.5px;
  }

  .faq-answer-content {
    padding: 0 18px 16px;
  }

  .faq-support-banner {
    padding: 24px 20px;
  }

  .faq-support-avatar-box {
    width: 100px;
    height: 100px;
  }

  .faq-support-contacts-list {
    flex-direction: column;
    gap: 14px;
  }
}
