/* FAQ Section */
.faq-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}

.faq-title {
    position: sticky;
    top: 120px;
}

.faq-title h2 {
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 2rem 0;
    cursor: pointer;
    transition: padding-left 0.3s ease;
}

.faq-item:hover {
    padding-left: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.faq-number {
    font-size: 1rem;
    color: var(--gray-text);
    font-weight: 500;
    min-width: 40px;
}

.faq-question h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    flex: 1;
    line-height: 1.3;
}

.faq-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: white;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 2rem 0 0 60px;
}

.faq-answer p {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.8;
    max-width: 700px;
}

@media (max-width: 968px) {
    .faq-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .faq-title {
        position: static;
    }

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

    .faq-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .faq-answer {
        padding: 0 0 0 0;
    }

    .faq-item.active .faq-answer {
        padding: 1.5rem 0 0 0;
    }
}
