.faq-intro {
    font-size: 1.1rem;
    margin-bottom: 0.5em;
}

.faq-controls {
    text-align: right;
}

.faq-controls .btn-link {
    color: #1e3a5f;
    padding: 0 0.25em;
}

.faq-controls-sep {
    color: #999;
}

.faq-list {
    margin-bottom: 2em;
}

.faq-item {
    border: 1px solid rgba(30, 58, 95, 0.25);
    border-radius: 8px;
    margin-bottom: 0.75em;
    overflow: hidden;
}

.faq-question {
    display: block;
    width: 100%;
    text-align: left;
    background: rgba(204, 229, 255, 0.7);
    border: none;
    padding: 0.9em 3em 0.9em 1.25em;
    font-size: 1.15rem;
    font-weight: 500;
    color: #0c1d3c;
    position: relative;
    cursor: pointer;
}

.faq-question:hover,
.faq-question:focus {
    background: rgba(204, 229, 255, 1.0);
    outline: none;
}

/* Chevron: points down when collapsed, up when open */
.faq-question::after {
    content: '';
    position: absolute;
    right: 1.25em;
    top: 50%;
    width: 0.6em;
    height: 0.6em;
    border-right: 2px solid #1e3a5f;
    border-bottom: 2px solid #1e3a5f;
    transform: translateY(-25%) rotate(-135deg);
    transition: transform 0.2s ease;
}

.faq-question.collapsed::after {
    transform: translateY(-75%) rotate(45deg);
}

.faq-answer > p,
.faq-answer > ol {
    padding: 0 1.25em;
}

.faq-answer > :first-child {
    margin-top: 1em;
}

.faq-answer > :last-child {
    margin-bottom: 1em;
}
