
.faq-section {
    width: 100%;
    padding: 70px 20px;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    box-sizing: border-box;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.faq-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.faq-list {
    width: 100%;
}

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

.faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
}

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

.faq-icon {
    flex-shrink: 0;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
}

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

.faq-answer {
    padding: 0 45px 22px 5px;
}

.faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}


/* Mobile */
@media (max-width: 768px) {

    .faq-section {
        padding: 45px 16px;
    }

    .faq-header {
        margin-bottom: 28px;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-header p {
        font-size: 14px;
        line-height: 1.5;
    }

    .faq-item summary {
        padding: 18px 2px;
        font-size: 15px;
        gap: 15px;
    }

    .faq-icon {
        font-size: 23px;
    }

    .faq-answer {
        padding: 0 30px 18px 2px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.65;
    }
}
