.faq-section {
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1360px;
}

.faq-section__title {
    font-family: 'Raleway';
    font-weight: 300;
    font-size: 3vw;
    line-height: 3.4vw;
    text-transform: uppercase;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #222729;
    margin-bottom: 2vw;
    flex-shrink: 0;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e0e0e0;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
    gap: 16px;
}

.faq-question:hover {
    color: #008295;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 0 24px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0 0 12px;
}

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

@media (min-width: 769px) and (max-width: 1359px) {
    .faq-section {
        margin-bottom: calc(80 / 13.6 * 1vw);
    }
}

@media (max-width: 768px) {
    .faq-section {
        margin-bottom: 0;
        padding-left: 6.25vw;
        padding-right: 6.25vw;
    }

    .faq-section__title {
        font-size: 7vw;
        line-height: 10vw;
        margin-bottom: 5vw;
    }

    .faq-question {
        font-size: 4.375vw;
        line-height: 6.25vw;
        padding: 16px 0;
    }

    .faq-answer {
        font-size: 4.375vw;
        line-height: 6.25vw;
        padding: 0 0 16px;
    }
}
