/* ── FAQ page inline-style replacements ── */

.faq-page-container {
    max-width: 800px;
}

.faq-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.05em;
}

.faq-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.faq-card {
    background: rgba(232,228,222,.3);
    border-left: 4px solid var(--military);
}

.faq-card--rosewood {
    border-left-color: var(--rosewood);
}

.faq-answer-text {
    opacity: 0.7;
    line-height: 1.8;
    padding: 0 24px 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--military);
}
.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}
.faq-answer.open {
    display: block;
}
.faq-chevron {
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-chevron.rotated {
    transform: rotate(180deg);
}

.services-browse {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--military);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.faq-link{
    text-align: center;
    margin-bottom: 1rem;
}

.faq-answer p{
    margin-bottom: 0.5rem;
}

.faq-answer a{
    color: var(--military);
    text-decoration: none;
    font-weight: 600;
}