/* FAQ Page Specific Styles */

/* FAQ Hero */
.faq-hero {
    margin-top: 85px;
    padding: 80px 0 60px;
    background: var(--rose-quartz); /* Rose Quartz solid color */
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--violet-femme);
}

.faq-hero p {
    font-size: 1.25rem;
    color: var(--misty-winter);
}

/* FAQ Content */
.faq-content {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 15px;
    border: 1px solid var(--blue-finch);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.75rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black-violet);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question.active {
    background: var(--rose-quartz); /* Rose Quartz */
    color: var(--violet-femme);
}

/* Active menu item */
.nav-menu a.active {
    color: var(--violet-femme);
    font-weight: 600;
}

/* FAQ Contact Section */
.faq-contact {
    margin-top: 80px;
    padding: 60px;
    background: var(--off-white);
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--violet-femme);
}

.faq-contact p {
    font-size: 1.1rem;
    color: var(--misty-winter);
    margin-bottom: 2rem;
}

.faq-contact .btn-primary {
    display: inline-block;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2rem;
    }

    .faq-hero p {
        font-size: 1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .faq-contact {
        padding: 40px 20px;
    }

    .nav-menu a.active {
        color: var(--violet-femme);
    }
}