.faq-section {
    padding: 100px 0;
    background-color: #F8F9FA; /* Slightly off-white background to contrast with white cards */
    display: flex;
    justify-content: center;
}

.faq-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Left column slightly smaller */
    gap: 80px;
}

/* Left Column: Title and CTA Card */
.faq-left {
    display: flex;
    flex-direction: column;
}

.faq-eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark, #1E293B);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.faq-eyebrow::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-cyan, #07B8A6);
}

.faq-left h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark, #1E293B);
    line-height: 1.1;
    margin-bottom: 40px;
}

.faq-cta-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.faq-cta-img-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.faq-cta-img-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(7, 184, 166, 0.15) 0%, rgba(7, 184, 166, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.faq-cta-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    position: relative;
    z-index: 2;
    border: 3px solid #FFFFFF;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-cta-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark, #1E293B);
    margin-bottom: 12px;
}

.faq-cta-card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 32px;
}

.faq-btn {
    background-color: var(--color-cyan, #07B8A6);
    color: #FFFFFF;
    text-align: center;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    display: block;
    width: 100%;
}

.faq-btn:hover {
    background-color: #059688;
    transform: translateY(-2px);
}

/* Right Column: Accordion */
.faq-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark, #1E293B);
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-dark, #1E293B);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-answer p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* Active State */
.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Turns + into x */
}

.faq-item.active .faq-answer {
    padding: 0 32px 24px 32px;
    max-height: 500px;
}

@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .faq-left h2 {
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}
