.about-page {
    background: #ffffff;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 70px;
    align-items: center;
    margin-bottom: 70px;
}

.about-hero__text {
    max-width: 620px;
    margin-bottom: 26px;
    font-size: 18px;
    line-height: 1.75;
    color: #5c6b74;
}

.about-hero__image {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(5,33,48,0.12);
}

.about-hero__image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.about-socials a {
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
}

.about-socials a:hover {
    background: var(--color-dark);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
    padding: 46px;
    border-radius: 30px;
    background: #f7fbfd;
}

.about-stat {
    text-align: center;
}

.about-stat__number {
    margin-bottom: 8px;
    font-size: 46px;
    font-weight: 800;
    color: var(--color-primary);
}

.about-stat__text {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
}

.about-advantages {
    margin-bottom: 80px;
}

.about-advantages__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-advantage {
    padding: 30px;
    border-radius: 24px;
    background: var(--color-dark);
    color: #ffffff;
}

.about-advantage h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 800;
}

.about-advantage p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.about-video,
.about-map {
    margin-bottom: 80px;
}

.about-video__frame,
.about-map__frame {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(5,33,48,0.12);
}

.about-video__frame iframe,
.about-map__frame iframe {
    display: block;
    width: 100%;
    height: 520px;
    border: 0;
}

@media (max-width: 992px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero__image img {
        height: 420px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-advantages__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-hero {
        margin-bottom: 44px;
    }

    .about-hero__text {
        font-size: 15px;
        line-height: 1.65;
    }

    .about-hero__image {
        border-radius: 22px;
    }

    .about-hero__image img {
        height: 260px;
    }

    .about-socials a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 20px;
        border-radius: 22px;
        margin-bottom: 50px;
    }

    .about-stat__number {
        font-size: 38px;
    }

    .about-advantages {
        margin-bottom: 50px;
    }

    .about-advantage {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .about-video,
    .about-map {
        margin-bottom: 50px;
    }

    .about-video__frame,
    .about-map__frame {
        border-radius: 22px;
    }

    .about-video__frame iframe,
    .about-map__frame iframe {
        height: 300px;
    }
}


.about-hero__subtitle {
    margin-top: -6px;
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.4;
}
@media (max-width: 768px) {
    .about-hero__subtitle {
        font-size: 15px;
        margin-bottom: 14px;
    }
}