/* FAQ Page Styles */

.faq_section {
    padding: 60px 20px;
    background-color: #fff;
}

.faq_container {
    max-width: 900px;
    margin: 0 auto;
}

.faq_intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.faq_intro a {
    color: #ffa500;
    text-decoration: none;
    font-weight: 600;
}

.faq_intro a:hover {
    text-decoration: underline;
}

/* FAQ List */
.faq_list {
    margin-bottom: 60px;
}

.faq_item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.faq_item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq_question {
    width: 100%;
    padding: 20px 25px;
    background-color: #f9f9f9;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    transition: background-color 0.3s ease;
}

.faq_question:hover {
    background-color: #fff5e6;
}

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

.faq_icon {
    font-size: 1.5rem;
    color: #ffa500;
    transition: transform 0.3s ease;
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fff;
}

.faq_answer.active {
    max-height: 500px;
    padding: 20px 25px;
}

.faq_answer p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* FAQ CTA Section */
.faq_cta {
    text-align: center;
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    margin-top: 40px;
}

.faq_cta h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq_cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

.cta_buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

    .faq_question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq_answer.active {
        padding: 15px 20px;
    }

    .faq_cta {
        padding: 30px 20px;
    }

    .faq_cta h3 {
        font-size: 1.5rem;
    }

    .cta_buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta_buttons .main_btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .faq_question {
        font-size: 0.95rem;
    }

    .faq_icon {
        font-size: 1.2rem;
    }
}
