/* FAQ Page Styles */

/* Ensure nav dropdown is not clipped */
.nav {
    overflow: visible !important;
}

/* FAQ Hero */
.faq-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: #ffffff;
}

.faq-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #040304;
}

.faq-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: rgba(4, 3, 4, 0.6);
}

/* FAQ Content */
.faq-content {
    padding: 4rem 0 6rem;
}

.faq-content .container {
    max-width: 800px;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #040304;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(4, 3, 4, 0.1);
}

/* Founder Bio */
.founder-bio {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.founder-photo {
    flex-shrink: 0;
}

.founder-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(4, 3, 4, 0.1);
}

.founder-text {
    flex: 1;
}

.founder-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(4, 3, 4, 0.8);
    margin: 0;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid rgba(4, 3, 4, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #040304;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #5B9E9E;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 2rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-answer.active {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(4, 3, 4, 0.7);
    margin: 0;
}

.faq-answer a {
    color: #5B9E9E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: #8BA888;
    text-decoration: underline;
}

/* FAQ CTA */
.faq-cta {
    padding: 4rem 0;
    text-align: center;
    background: #F9F9F9;
}

.faq-cta h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #040304;
}

.faq-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: rgba(4, 3, 4, 0.6);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 6rem 0 3rem;
    }

    .faq-hero h1 {
        font-size: 2.5rem;
    }

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

    .faq-content {
        padding: 3rem 0 4rem;
    }

    .faq-section {
        margin-bottom: 3rem;
    }

    .faq-section-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    /* Founder Bio Mobile */
    .founder-bio {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .founder-photo img {
        width: 150px;
        height: 150px;
    }

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

    .faq-question span:first-child {
        padding-right: 1rem;
    }

    .faq-icon {
        font-size: 1.25rem;
    }

    .faq-answer {
        font-size: 0.9375rem;
    }

    .faq-answer.active {
        padding-bottom: 1.25rem;
    }

    .faq-cta h2 {
        font-size: 2rem;
    }

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