/* FAQ Section Styles */
.faq-section {
    padding: 0px 20px 60px 20px;
    background-color: #ffffff;
    width: 100%;
}

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

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0 0 36px;
    line-height: 1.2;
}

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

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

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

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


.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #666;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: #F56011;
}

.faq-answer {
    display: none;
    padding: 0 0 20px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #4a4a4a;
    animation: slideDown 0.3s ease;
}

.faq-answer p {
    margin: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 32px 24px;
        /* merged from 480px breakpoint */
    }

    .faq-title {
        font-size: 22px;
        /* merged from 480px */
        margin-bottom: 24px;
        /* merged from 480px */
    }

    .faq-question {
        font-size: 14px;
        /* merged from 480px */
        padding: 14px 0;
        /* merged from 480px */
    }

    .faq-question span {
        padding-right: 12px;
        /* unchanged */
    }

    .faq-answer {}

    .faq-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .faq-question {
        font-size: 14px;
        padding: 14px 0;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }
}