@charset "utf-8";

.faq-hero {
    background: #f7f2ea;
    padding: 70px 0 58px;
    text-align: center;
}

.faq-hero .container {
    max-width: 980px;
}

.faq-eyebrow {
    color: #a31a20;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.faq-hero h1 {
    color: #001740;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 18px;
}


.faq-wrapper {
    padding: 44px 15px 80px;
}


.faq-category-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    list-style: none;
    margin: 0 0 52px;
    padding: 0;
}

.faq-category-nav a {
    align-items: center;
    background: #fff;
    border: 1px solid #cca867;
    color: #001740;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    min-height: 54px;
    padding: 12px 14px;
    text-decoration: none;
}

.faq-category-nav a:hover {
    background: #cca867;
    color: #fff;
    text-decoration: none;
}


.faq-section {
    margin-top: 56px;
    scroll-margin-top: 86px;
}

.faq-section:first-of-type {
    margin-top: 0;
}

.faq-section h2 {
    border-bottom: 2px solid #cca867;
    color: #001740;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 20px;
    padding: 0 0 12px 16px;
    position: relative;
}

.faq-section h2:before {
    background: #a31a20;
    content: "";
    height: 28px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 4px;
}

.faq-list {
    border-top: 1px solid #e7dcc8;
}

.faq-item {
    border-bottom: 1px solid #e7dcc8;
}

.faq-question {
    align-items: center;
    background: #fff;
    border: 0;
    color: #001740;
    cursor: pointer;
    display: flex;
    font: inherit;
    min-height: 68px;
    padding: 16px 58px 16px 0;
    position: relative;
    text-align: left;
    width: 100%;
}

.faq-question:hover,
.faq-question:focus {
    background: #fbf8f2;
    outline: none;
}

.faq-q-mark,
.faq-a-mark {
    align-items: center;
    border-radius: 50%;
    display: inline-flex;
    flex: 0 0 34px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    height: 34px;
    justify-content: center;
    margin-right: 14px;
    width: 34px;
}

.faq-q-mark {
    background: #a31a20;
    color: #fff;
}

.faq-a-mark {
    background: #001740;
    color: #fff;
}

.faq-q-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.faq-toggle {
    height: 18px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
}

.faq-toggle:before,
.faq-toggle:after {
    background: #a31a20;
    content: "";
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-toggle:before {
    height: 2px;
    width: 18px;
}

.faq-toggle:after {
    height: 18px;
    width: 2px;
}

.faq-question[aria-expanded="true"] .faq-toggle:after {
    display: none;
}

.faq-answer {
    background: #fbf8f2;
}

.faq-answer-inner {
    align-items: center;
    display: flex;
    min-height: 74px;
    padding: 14px 24px 14px 0;
}

.faq-answer-body {
    color: #333;
    font-size: 15px;
    line-height: 1.9;
}

.faq-answer-body p {
    margin-bottom: 10px;
}

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

.faq-info-block {
    border-left: 3px solid #cca867;
    margin-top: 18px;
    padding: 2px 0 2px 16px;
}

.faq-info-block h3 {
    color: #001740;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 8px;
}

.faq-info-block p {
    margin-bottom: 6px;
}

.faq-info-block ul {
    margin: 0;
    padding-left: 1.2em;
}

.faq-info-block li {
    line-height: 1.8;
    margin-bottom: 4px;
}

.faq-pdf-link {
    margin-top: 14px;
}

.faq-pdf-link a {
    background: #a31a20;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 10px 18px;
    text-decoration: none;
}

.faq-pdf-link a:hover {
    background: #001740;
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 991px) {
    .faq-category-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .faq-hero {
        padding: 48px 0 40px;
    }

    .faq-hero h1 {
        font-size: 28px;
    }

    .faq-wrapper {
        padding-bottom: 54px;
    }

    .faq-category-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 42px;
    }

    .faq-category-nav a {
        font-size: 13px;
        min-height: 52px;
        padding: 10px 8px;
    }

    .faq-section {
        margin-top: 44px;
    }

    .faq-section h2 {
        font-size: 21px;
    }

    .faq-question {
        min-height: 62px;
        padding-right: 42px;
    }

    .faq-q-text {
        font-size: 15px;
    }

    .faq-toggle {
        right: 10px;
    }
}
