.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-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

/* Стили заголовка вопроса */
.faq-question {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
    padding-right: 40px;
    position: relative;
    cursor: pointer;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-question span {
    display: inline-block;
}

/* Иконка плюсика (как на главной) */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: #000;
    transition: transform 0.3s ease;
}

/* Если вопрос открыт (добавьте класс .active к .faq-item через JS) */
.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

/* Стили ответа */
.faq-answer {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    padding: 10px 0 5px 0;
    /* Если вы хотите, чтобы ответы были скрыты изначально, раскомментируйте: */
    /* display: none; */
}

.faq-answer p {
    margin: 0 0 10px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: #ff6b6b; /* Цвет ссылки как на сайте */
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 107, 0.3);
}

.faq-answer a:hover {
    border-bottom-color: #ff6b6b;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
    }
    .faq-answer {
        font-size: 14px;
    }
}
/* Адаптивность */
@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .step-item {
        width: 100%;
        max-width: 400px;
    }
    
}