/* FAQ Accordion Module - Got Questions? */
.home-faq-module {
    background-color: #005daa;
    color: #ffffff;
    padding: 60px 0;
    /*margin-top: 30px;*/
}

.home-faq-module h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: left;
}

.faq-wrapper {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.faq-questions-column {
    flex: 0 0 auto;
    width: 40%;
    min-width: 350px;
}

.faq-answer-column {
    flex: 1;
    padding-left: 40px;
    min-height: 200px;
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s;
}

.faq-item.active .faq-question {
    background-color: rgba(0, 0, 0, 0.3);
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.15);
}

.faq-question p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding-right: 20px;
    flex: 1;
}

.faq-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s;
}

.faq-arrow::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-right: 3px solid #fef100;
    border-bottom: 3px solid #fef100;
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -6px;
}

.faq-answer {
    display: none;
}

.faq-answer-content {
    display: none;
}

.faq-answer-content.active {
    display: block;
}

.faq-answer-content p {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .home-faq-module {
        padding: 40px 15px;
    }

    .home-faq-module h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .faq-wrapper {
        flex-direction: column;
    }

    .faq-questions-column {
        width: 100%;
        min-width: auto;
    }

    .faq-answer-column {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question p {
        font-size: 16px;
    }

    .faq-answer-content p {
        font-size: 15px;
    }
}
