.about_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about_header {
    text-align: center;
    margin-bottom: 60px;
}

.about_header h1 {
    font-size: 36px;
    font-weight: 500;
    color: #333;
    margin: 0 0 15px 0;
}

.about_subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.about_section {
    text-align: left;
    margin-bottom: 60px;
}

.about_section h2 {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin: 0 0 30px 0;
}

.about_section p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 20px 0;
}

.mission {
    font-size: 18px !important;
    font-weight: 500;
    color: #1976d2 !important;
}

/* Ценности */
.values_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value_card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.value_card h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0 0 10px 0;
}

.value_card p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Команда */
.team_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}
.team_card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 250px;
}
.team_photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
}
.team_photo > .img_wrapper{
    width: 120px;
    height: 120px;
    text-align: center;
}
.team_photo > .img_wrapper > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team_card h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0 0 5px 0;
}
.team_card .position {
    font-size: 14px;
    color: #1976d2;
    margin: 0 0 10px 0;
}

.team_card .description {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    text-align: center;
}

/* История */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1976d2;
}

.timeline_item {
    position: relative;
    margin-bottom: 40px;
}

.timeline_item:last-child {
    margin-bottom: 0;
}

.timeline_item:before {
    content: '';
    position: absolute;
    left: -54px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1976d2;
}

.year {
    position: absolute;
    left: -120px;
    top: -5px;
    font-size: 18px;
    font-weight: 500;
    color: #1976d2;
}

.timeline_item .content {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.timeline_item h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0 0 10px 0;
}

.timeline_item p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .about_wrapper {
        padding: 20px;
    }

    .about_header {
        margin-bottom: 40px;
    }

    .about_header h1 {
        font-size: 28px;
    }

    .about_subtitle {
        font-size: 16px;
    }

    .values_grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .team_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline:before {
        left: 0;
    }

    .timeline_item:before {
        left: -34px;
    }

    .year {
        position: static;
        display: block;
        margin-bottom: 10px;
        font-size: 16px;
    }
} 