/* Общие стили (наследуются из главного файла) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    color: #000000;
    line-height: 1;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    background-color: #E4E3E6; /* Фон всей страницы */
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 182px;
}

/* Основной блок страницы "Что сдать" */
.top-section {
    width: 100%;
    height: 588px; /* Высота блока с фоновым изображением */
    position: relative;
    overflow: hidden;
}

/* Фоновое изображение */
.background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url('../img/image2.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

/* Контент страницы "Что сдать" */
/* .what-content {
    position: absolute;
    width: 883px;
    top: 133px;
    z-index: 2; 
} */

.what-content {
    position: relative;
    display: flex;
    padding-top: 100px;
    z-index: 2;
    flex-direction: column;
}

.what-title {
    font-weight: 400;
    font-size: 40px;
    line-height: 47px;
    color: #000000;
    margin-bottom: 24px;
    width: 938px;
}

.what-text {
    width: 740px;
}

.what-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 16px;
}

.features-list {
    margin: 16px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 16px;
    width: 100%;
}

.feature-dot {
    width: 5.05px;
    height: 5px;
    background: #809C53;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
}

/* Зеленый разделитель */
.green-divider {
    width: 100%;
    background: linear-gradient(90deg, #819A43 0%, #70A9BC 100%);
    position: relative;
    z-index: 3; /* Выше фона */
}

/* Малый разделитель (38px) */
.small-divider {
    height: 38px;
}

/* Секции контента */
.content-section {
    width: 100%;
    padding: 40px 0;
    background-color: #E4E3E6;
}

.section-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
    margin-bottom: 10px;
}

.section-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    width: 999px;
}
