.faq {
    background: var(--primary-blue);
    color: var(--white);
    position: relative;
    padding: 80px 0; /* padding for the wave */
}

.faq__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 4;
}

.faq h2 {
    font-family: var(--font-title);
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: none;
    border-radius: 12px;
    color: var(--heading);
    overflow: hidden;
    padding: 0 20px;
}

.faq-item summary {
    cursor: pointer;
    font-family: var(--font-title);
    font-size: 22px;
    line-height: 1.2;
    list-style: none;
    padding: 18px 44px 18px 0;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23cc1425' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    content: "";
    height: 22px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 200ms ease;
    width: 22px;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0 0 18px;
}

@media (max-width: 760px) {
    .faq h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .faq-item summary {
        font-size: 20px;
    }
}
