﻿/* FAQ Page Styles */
.faq-page {
    padding: 140px 0 4rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .faq-header h1 {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--text-color);
        margin-bottom: 0.5rem;
    }

    .faq-header .subtitle {
        font-size: 1.2rem;
        color: var(--gray);
        max-width: 700px;
        margin: 0 auto;
    }

/* Category headings */
.faq-category {
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: 32px;
    padding: 2rem;
    /*box-shadow: var(--shadow-sm);*/
}

    .faq-category h2 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 3px solid var(--primary-light);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--primary-dark);
    }

        .faq-category h2 i {
            color: var(--primary-color);
            font-size: 1.4rem;
        }

/* Individual Q&A items */
.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 1.5rem;
}

    .faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

    .faq-question::before {
        content: "Q:";
        font-weight: 800;
        color: var(--primary-color);
        font-size: 1.2rem;
    }

.faq-answer {
    color: var(--gray);
    line-height: 1.6;
    padding-left: 1.8rem;
    position: relative;
}

    .faq-answer::before {
        content: "A:";
        position: absolute;
        left: 0;
        top: 0;
        font-weight: 600;
        color: var(--secondary-dark);
    }

/* Contact section at bottom */
.faq-contact {
    background: var(--secondary-light);
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

    .faq-contact h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        color: var(--text-color);
    }

    .faq-contact p {
        margin-bottom: 0.75rem;
        color: var(--text-color);
    }

    .faq-contact ul {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
    }

    .faq-contact li {
        display: inline-block;
        margin: 0 1rem;
        font-size: 1rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .faq-page {
        padding-top: 100px;
    }

    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-category {
        padding: 1.5rem;
    }

        .faq-category h2 {
            font-size: 1.3rem;
        }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        padding-left: 1.2rem;
    }

    .faq-contact li {
        display: block;
        margin: 0.5rem 0;
    }
}
