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

/* Заголовок страницы */
.abc753 {
    text-align: center;
    margin-bottom: 3rem;
}

.abc753 h1 {
    margin-bottom: 1rem;
}

.abc753 p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Секция с историей компании */
.def159 {
    margin-bottom: 3rem;
}

.ghi357 {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.jkl951 {
    flex: 1;
}

.jkl951 h2 {
    margin-bottom: 1.5rem;
}

.jkl951 p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.mno753 {
    flex: 1;
}

.mno753 img {
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Секция с миссией */
.pqr35744 {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 3rem;
}

.pqr35744 h2 {
    margin-bottom: 1.5rem;
}

.pqr35744 p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Секция с ценностями */
.stu159 {
    margin-bottom: 3rem;
}

.stu159 h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.vwx753 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.yza951 {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.yza951:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.yza951 h3 {
    margin-bottom: 1rem;
    color: #1a3b5d;
}

/* Секция с командой */
.bcd357 {
    margin-bottom: 3rem;
}

.bcd357 h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.efg753 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.hij159 {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 5px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hij159 img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid #f5f5f5;
}

.hij159 h3 {
    margin-bottom: 0.5rem;
}

.klm357 {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Секция с наградами */
.nop951 {
    margin-bottom: 3rem;
}

.nop951 h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.qrs357 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.tuv159 {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #fff;
    border-radius: 5px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.tuv159 img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin: 0 auto 1rem;
}

.tuv159 h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tuv159 p {
    color: #666;
}

/* Адаптивная верстка */
@media (max-width: 992px) {
    .ghi357 {
        flex-direction: column;
        gap: 2rem;
    }

    .mno753 {
        order: -1;
    }

    .mno753 img {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .vwx753 {
        grid-template-columns: 1fr;
    }

    .efg753, .qrs357 {
        flex-direction: column;
        align-items: center;
    }
} 