/* FAQ Section Styles */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Left CTA Card */
.faq-cta {
    background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.14), transparent 55%), #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.08), 0 4px 6px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(37, 99, 235, 0.08);
    overflow: hidden;
}

.faq-cta-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
    margin-right: 0.5rem;
}

.faq-title {
    font-size: 2.5rem;
    line-height: 1.1;
    color: #111827;
    margin: 0 0 1.5rem;
    letter-spacing: -0.025em;
    text-align: left;
}

.faq-cta-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 3px solid #eff6ff;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.faq-cta-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-cta-heading {
    font-size: 1.25rem;
    color: #111827;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
}

.faq-cta-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1.5rem;
}

.faq-cta-button {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    background: #2563eb;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

.faq-cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Right FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: #bfdbfe;
}

.faq-item.active {
    border-color: #93c5fd;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    background: none;
    text-align: left;
    outline: none;
    position: relative;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #111827;
    margin: 0;
    padding-right: 2.5rem;
    line-height: 1.4;
}

.faq-icon {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.75rem;
    line-height: 1;
    color: #2563eb;
    font-weight: 400;
    transition: transform 0.3s ease, content 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question::after {
    content: '×';
    transform: translateY(-50%) rotate(0);
    color: #2563eb;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.625;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-title {
        font-size: 2.25rem;
    }

    .faq-cta {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

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

    .faq-answer-content {
        padding: 0 1.25rem 1.25rem;
    }
}
