#faq {
    background: #191a1d;
    color: #fff;
    padding: 48px 0 36px 0;
}

.faq-main-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    letter-spacing: -0.5px;
    color: #e0e0e0;
}

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

.faq-block {
    width: 100%;
}

.faq-question-row {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin: 0;
    transition: color 0.2s;
    text-align: left;
}

.faq-question-row:hover {
    color: #29aaff;
}

.faq-question-text {
    flex: 1;
    text-align: left;
}

.faq-chevron {
    font-size: 1.5rem;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
    opacity: 0.7;
}

.faq-block.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer-block {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(.4,2,.6,1), opacity 0.3s;
    font-size: 0.95rem;
    color: #c0c0c0;
    margin-left: 0;
    margin-top: 0.4rem;
    line-height: 1.6;
    font-weight: 400;
}

.faq-block.open .faq-answer-block {
    max-height: 300px;
    opacity: 0.9;
    margin-top: 0.8rem;
}

@media (max-width: 600px) {
    .faq-title { 
        font-size: 1.6rem; 
    }
    .faq-main-container { 
        padding: 0 8px; 
    }
    .faq-question-row { 
        font-size: 1rem; 
    }
    .faq-answer-block {
        font-size: 0.85rem;
    }
} 