.faq-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.faq-title {
    margin-bottom: 28px;
    color: #1f2d3d;
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
}

.faq-item {
    border-radius: 8px;
    background: #f3f5f7;
    transition: box-shadow .2s ease, transform .2s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
    transform: translateY(-1px);
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    padding: 18px 22px;
    color: #1f2d3d;
    font-size: 18px;
    font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    color: #1f2d3d;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    transition: transform .2s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px 18px;
    color: #5a6673;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .faq-item summary {
        font-size: 16px;
        padding: 16px 18px;
    }
}
