html {
    background-image: url(images/satelliteSE2.png);
    background-size: 7em;
}

/* ===== INTRO ===== */
.faq-intro {
    font-size: 1.02em;
    line-height: 1.6em;
    margin-bottom: 1.8em;
    color: #333;
}

/* ===== CATEGORY SECTION ===== */
.faq-category {
    margin-bottom: 2em;
}

.faq-category-title {
    font-size: 1.1em !important;
    font-weight: bold !important;
    color: #fff !important;
    background-color: #004170;
    padding: 0.55em 1em;
    border-radius: 0.3em 0.3em 0 0;
    margin: 0 0 0 0 !important;
    letter-spacing: 0.03em;
}

/* ===== ACCORDION ITEM ===== */
.faq-item {
    border-left: 1px solid #c8cfd9;
    border-right: 1px solid #c8cfd9;
    border-bottom: 1px solid #c8cfd9;
}

.faq-item:last-child {
    border-radius: 0 0 0.3em 0.3em;
}

/* ===== QUESTION BUTTON ===== */
.faq-question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 0.9em 3em 0.9em 1em;
    font-size: 0.97em;
    font-weight: 600;
    color: #004170;
    cursor: pointer;
    position: relative;
    line-height: 1.4em;
    transition: background-color 0.15s ease;
    font-family: var(--page-font);
}

.faq-question:hover {
    background-color: #eef4fa;
}

.faq-question.open {
    background-color: #eef4fa;
    color: #003060;
    border-bottom: 1px solid #c8cfd9;
}

/* chevron icon */
.faq-question::after {
    content: '';
    position: absolute;
    right: 1.1em;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 0.6em;
    height: 0.6em;
    border-right: 2px solid #004170;
    border-bottom: 2px solid #004170;
    transform-origin: center 75%;
    transition: transform 0.2s ease;
    transform: translateY(-65%) rotate(45deg);
}

.faq-question.open::after {
    transform: translateY(-35%) rotate(225deg);
}

/* ===== ANSWER PANEL ===== */
.faq-answer {
    display: none;
    padding: 0.85em 1.2em 1em 1.2em;
    background-color: #f7f9fb;
    font-size: 0.95em;
    line-height: 1.65em;
    color: #333;
}

/* display toggled by jQuery slideDown/slideUp */

.faq-answer p {
    margin: 0 0 0.6em 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 0.3em 0 0.6em 1.3em;
    padding: 0;
}

.faq-answer ul li {
    margin-bottom: 0.35em;
    line-height: 1.55em;
}

.faq-answer a {
    color: #0068b3;
    font-weight: bold;
}

.faq-answer .faq-placeholder {
    background-color: #fff8e1;
    border-left: 3px solid #f5a623;
    padding: 0.45em 0.8em;
    border-radius: 0 0.2em 0.2em 0;
    font-style: italic;
    color: #7a5800;
    font-size: 0.93em;
    display: block;
}

.faq-answer p .faq-placeholder,
.faq-answer li .faq-placeholder {
    display: inline;
    border-left: none;
    padding: 0;
    border-radius: 0;
}

/* ===== APP STORE BADGES ===== */
.faq-app-stores {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    margin-top: 0.7em;
}

.faq-store-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    text-decoration: none !important;
    color: #333 !important;
    font-size: 0.95em;
}

.faq-store-link img {
    height: 1.8em;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.faq-store-link span {
    font-weight: normal;
}

.faq-store-link:hover span {
    text-decoration: underline;
}

/* ===== CTA STRIP ===== */
.faq-cta {
    margin-top: 2em;
    padding: 1.2em 1.4em;
    background-color: #004170;
    border-radius: 0.35em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8em;
}

.faq-cta-text {
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    line-height: 1.4em;
}

.faq-cta-text span {
    display: block;
    font-weight: normal;
    font-size: 0.9em;
    opacity: 0.85;
    margin-top: 0.2em;
}

.faq-cta-btn {
    display: inline-block;
    padding: 0.6em 1.4em;
    background-color: #d61a16;
    color: #fff !important;
    border-radius: 0.3em;
    font-weight: bold;
    font-size: 0.95em;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background-color 0.15s ease;
}

.faq-cta-btn:hover {
    background-color: #b31410 !important;
    color: #fff !important;
}

.faq-cta-btn-sm {
    padding: 0.25em 0.85em;
    font-size: 0.88em;
    vertical-align: middle;
}

/* ===== RESPONSIVE ===== */
@media only screen and (max-width: 530px) {
    .faq-question {
        padding-right: 2.5em;
        font-size: 0.93em;
    }

    .faq-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}
