/* Общие стили (наследуются из главного файла) */
* {
    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;
}

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

/* Основной блок страницы "О нас" */
.top-section {
    width: 100%;
    height: 629px; /* Новая высота под новое изображение */
    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;
}

/* Контент страницы "О нас" */
/* .about-content {
    position: absolute;
    width: 543px;
    top: 137px;
    z-index: 2;
} */

.about-content {
    position: relative;
    display: flex;
    padding-top: 100px;
    z-index: 2;
    flex-direction: column;
}
.about-title {
    font-weight: 400;
    font-size: 40px;
    line-height: 47px;
    color: #000000;
    margin-bottom: 24px;
}

.about-text {
    width: 680px;
}

.about-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;
}

.license-info {
    width: 875px;
    margin-top: 24px;
}

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


/* Секция с предоставляемыми услугами */
.services-section {
    width: 100%;
    height: auto;
    background-color: #E4E3E6;
    padding: 30px 0;
}

.services-section .container {
    height: 100%;
}

/* Текст после зеленого разделителя */
.after-divider-text {
    width: 893px;
    margin-bottom: 32px;
}

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

/* Заголовок услуг */
.services-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 24px;
}

/* Сетка услуг (3 ряда по 3 блока) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 31px;
    width: 100%;
}

/* Карточка услуги */
.service-card {
    width: auto;
    height: auto;
    background: #72A7B1;
    box-shadow: 6px 9px 20px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

/* Иконка услуги */
.service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Текст услуги */
.service-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
}

/* Нижние текстовые блоки */
.bottom-text-section {
    width: 100%;
    padding: 71px 0;
    background-color: #E4E3E6;
}

.bottom-text-block {
    margin-bottom: 32px;
}

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

.bottom-text-block:last-child {
    margin-bottom: 0;
}

