/**
 * Стили для страницы "О компании"
 */

/* Заголовок страницы */
.page-title {
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 600;
    color: #003366;
}

/* Двухколоночная верстка */
.about-page__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: stretch;
    margin-bottom: 40px;
}

.about-page__col {
    padding: 0 15px;
}

.about-page__content {
    width: 66.666%;
}

.about-page__image {
    width: 33.333%;
    position: relative;
    display: flex;
    align-items: stretch;
}

.about-page__image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-page__image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* Заголовок секции истории */
.section-title {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
    color: #003366;
    text-align: center;
}

/* Дополнительный контент */
.about-page__additional {
    padding: 40px 0;
    background-color: #fff;
}

.about-page__additional-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.about-page__additional-content h2 {
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
    color: #003366;
}

.about-page__additional-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Блок истории компании */
.history {
    padding: 40px 0 60px;
    background-color: #f9f9f9;
}

.history__slider {
    margin-top: 30px;
}

/* Адаптивность */
@media (max-width: 991px) {
    .about-page__content,
    .about-page__image {
        width: 100%;
    }
    
    .about-page__image {
        margin-top: 30px;
        height: 400px;
    }
    
    .about-page__row {
        margin-bottom: 30px;
    }
    
    .history {
        padding: 30px 0 50px;
    }
}

@media (max-width: 767px) {
    .page-title,
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-page {
        padding: 30px 0;
    }
    
    .about-page__image {
        height: 300px;
    }
    
    .history {
        padding: 20px 0 40px;
    }
}