.banner-container {
    opacity: 0;
    padding: 5rem 2rem;
    text-align: center;
    background-color: #8B0000;
    color: #FFF;
    animation: fadeUp 600ms forwards 100ms;
}

.banner-container .banner-title {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.banner-container .banner-text {
    font-size: 1.2rem;
}

.faq-section {
    margin: 0 auto;
    max-width: 48rem;
    opacity: 0;
    animation: fadeUp 600ms forwards 500ms;
}

.faq-section .faq-title {
    margin-top: 1rem;
    color: var(--accent-color);
    text-align: center;
}

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

.faq-section .faq-item button[aria-expanded='true'] {
    border-bottom: 1px solid var(--accent-color);
}

.faq-button {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 10px;
    width: 100%;
    padding: 1em 0;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    text-decoration: none;
    color: #000;
}

.faq-button .faq-question {
    font-weight: 400;
    font-size: 1.15rem;
}

.faq-button:hover {
    cursor: pointer;
    color: var(--accent-color);
}

.faq-button:hover::after,
.faq-button:focus::after {
    cursor: pointer;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.faq-button .icon {
    flex-shrink: 0;
    position: relative;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.faq-button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background-color: currentColor;
}
.faq-button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background-color: currentColor;
}

.faq-button[aria-expanded='true'] {
    color: var(--accent-color);
}
.faq-button[aria-expanded='true'] .icon::after {
    width: 0;
}
.faq-button[aria-expanded='true'] + .faq-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height; 
}
.faq-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}
.faq-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
    line-height: 1.5;
}