/* FAQ Section */
.faq-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #eb0a1e;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 0;
    overflow: hidden;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 50px;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    padding-right: 30px;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: #eb0a1e;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
}

.faq-answer p {
    padding: 0 50px 28px 50px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.faq-question[aria-expanded="true"]+.faq-answer {
    max-height: 500px;
}

/* Responsive - Tablet */
@media (max-width: 968px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 38px;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 24px 35px;
    }

    .faq-question span:first-child {
        font-size: 17px;
    }

    .faq-answer p {
        padding: 0 35px 24px 35px;
        font-size: 15px;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .faq-section {
        padding: 50px 20px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-question span:first-child {
        font-size: 16px;
        padding-right: 20px;
    }

    .faq-icon {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }

    .faq-answer p {
        padding: 0 25px 20px 25px;
        font-size: 14px;
    }
}