.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.faq-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: inline-block;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #10b981;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #10b981;
}

.faq-icon {
    font-size: 1.5rem;
    color: #10b981;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-answer-content a {
    color: #10b981;
    text-decoration: none;
}

.faq-answer-content a:hover {
    text-decoration: underline;
}

.faq-answer-content ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-cta-section {
    padding: 4rem 0;
    text-align: center;
    background: #f8fafc;
    margin-top: 3rem;
}

.faq-cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: #374151;
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: visible;
}

.faq-cta-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0;
    color: white;
    white-space: nowrap;
}

.faq-cta-text {
    text-align: left;
}

.faq-cta-box .btn-primary {
    background: linear-gradient(135deg, #22d3ee, #06B6D4, #0891b2);
    color: white;
    white-space: nowrap;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    margin-right: -6rem;
    transition: all 0.3s ease;
}

.faq-cta-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer-content {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }

    .faq-cta-section {
        padding: 2rem 1rem;
    }

    .faq-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .faq-cta-text {
        text-align: center;
    }

    .faq-cta-box h2 {
        font-size: 1.25rem;
        white-space: normal;
    }
    
    .faq-cta-box .btn-primary {
        margin-right: 0;
    }
}

@media (max-width: 500px) {
    .faq-section-title {
        font-size: 1.1rem;
    }
}
