.faq {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-color);
}

.faq-list {
    max-width: 1400px;
    /* Full width container */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem var(--spacing-xl);
    /* Reduced row gap */
    align-items: start;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--accent-color);
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-color);
    margin: 0;
    padding-right: 2rem;
    line-height: 1.3;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 100;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Increased for longer answers */
    transition: max-height 0.5s ease-in-out;
}

.faq-answer p {
    padding-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 95%;
}

@media (max-width: 1024px) {
    .faq {
        padding: 4rem 0;
    }

    .faq-list {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns */
        gap: 1rem;
        /* Add gap */
        align-items: start;
    }

    .faq-question {
        padding: 0.5rem 0;
        /* Reduced padding */
    }

    .faq-question h3 {
        font-size: 0.9rem;
        /* Reduced size */
        padding-right: 0.5rem;
        line-height: 1.2;
    }

    .faq-toggle {
        font-size: 1.2rem;
    }

    .faq-answer p {
        font-size: 0.75rem;
        /* Reduced size */
        line-height: 1.3;
        padding-bottom: 0.5rem;
    }

    .faq-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}