/* ===== Общие настройки ===== */
.about-company {
    padding: 60px 0;
    background-color: #f9f9f9;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.about-company h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 600;
    color: #1d1d1d;
}

.about-company h3 {
    font-size: 20px;
    margin: 12px 0 8px;
    font-weight: 500;
    color: #222;
}

.about-company p {
    margin-bottom: 16px;
}

/* ===== Intro текст ===== */
.about-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

/* ===== Преимущества ===== */
.about-benefits ul {
    list-style: disc inside;
    padding-left: 20px;
    margin-bottom: 30px;
}

.about-benefits li {
    margin-bottom: 10px;
}

/* ===== Этапы работ ===== */
.about-stages .stage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}

.about-stages .stage {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(33.333% - 24px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.about-stages .stage:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stage-number {
    font-size: 32px;
    font-weight: bold;
    color: #0077cc;
    margin-bottom: 8px;
}

/* ===== Судоподъем — что можем поднять ===== */
.about-capabilities .ship-types {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
}

.about-capabilities .ship-types li {
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.about-capabilities .ship-types li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0077cc;
}

/* ===== Команда ===== */
.about-team .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.about-team .person {
    background: #fff;
    padding: 20px;
    border-left: 4px solid #0077cc;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* ===== Медиазапросы ===== */
@media (max-width: 768px) {
    .about-stages .stage-grid {
        flex-direction: column;
    }

    .about-capabilities .ship-types {
        columns: 1;
    }

    .about-company h2 {
        font-size: 24px;
    }

    .about-company h3 {
        font-size: 18px;
    }
}
.about-team .person {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #0077cc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.about-team .person img {
    width: 100%;
    max-width: 220px;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.about-team .person-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.about-team .person-info p {
    font-size: 15px;
    color: #555;
}

@media (min-width: 768px) {
    .about-team .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}
