/* FAQ header layout for language switcher */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Accordion FAQ styles */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}
.accordion-question {
    width: 100%;
    background: #f5f5f5;
    color: #1F1F1F;
    cursor: pointer;
    padding: 18px;
    text-align: left;
    border: none;
    outline: none;
    transition: background 0.2s;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 4px;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.accordion-question[aria-expanded="true"] {
    background: #009DFF;
    color: #fff;
}
.accordion-answer {
    background: #fff;
    padding: 16px 18px;
    border-radius: 0 0 6px 6px;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
}

/* Homepage FAQ Callout Styles */
.homepage-faq-callout {
  background: #f7faff;
  padding: 2.5rem 0;
  text-align: center;
  margin-bottom: 2rem;
}
.homepage-faq-callout h2 {
  color: #009DFF;
}
.homepage-faq-callout p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 1rem auto;
}
.faq-callout-link {
  color: #009DFF;
  text-decoration: underline;
  font-weight: bold;
}
.faq-callout-btn-wrapper {
  margin-top: 1rem;
}
.faq-callout-btn {
  background: #009DFF;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* FAQ Index Page Styles */
.faq-index-section {
    max-width: 600px;
    margin: 40px auto;
    padding: 24px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-index-list {
    font-size: 18px;
    line-height: 2;
}
