.how-we-work-section, .faq-section {
    font-family: var(--dlf-font-main);
    color: var(--dlf-text);
    padding: 40px 15px;
    max-width: 1200px;
    margin: 0 auto;
}


.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 18px;
}

/* --- Блок "Как мы работаем" --- */
.steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--dlf-border);
}

.step-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--dlf-accent);
    color: #fff;
    border-radius: 50%;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-title {
    font-family: var(--dlf-font-header);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dlf-primary);
}

.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* --- Блок "Часто задаваемые вопросы" (FAQ) --- */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--dlf-border);
    padding: 15px 0;
    overflow: hidden;
}

.faq-question {
    font-family: var(--dlf-font-header);
    font-size: 18px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    margin: 0;
    color: var(--dlf-primary);
    transition: color 0.2s ease;
    user-select: none;
}

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

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--dlf-accent);
    transition: transform 0.3s ease;
}

/* Скрытый ответ по умолчанию */
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    transition: all 0.3s ease-in-out;
}

/* Активное состояние (открытый вопрос) */
.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 10px;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer ul, .faq-answer ol {
    margin-top: 10px;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 5px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .step-item {
        width: 100%;
        max-width: 400px;
    }
    
}