/* FAQ section — native <details>/<summary> accordion, no JS needed */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 22px 0;
}

.faq-item:first-child { border-top: 1px solid rgba(0, 0, 0, 0.1); }

.faq-question {
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.faq-question::after {
    content: '+';
    flex: 0 0 auto;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after { transform: rotate(45deg); }

.faq-answer {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.faq-answer a { color: inherit; font-weight: 600; }
