.about-page {
    width: 100%;
    display: grid;
    gap: 14px;
}

.about-page__intro,
.about-page__services,
.about-page__cta,
.about-page__map {
    border: 1px solid #eadfca;
    border-radius: 12px;
    background: #fff;
    padding: 16px;
}

.about-page__intro {
    background:
        radial-gradient(540px 160px at 0% 0%, #fff4e6 0%, rgba(255, 244, 230, 0) 70%),
        linear-gradient(120deg, #ffffff 0%, #fffbf3 100%);
}

.about-page__title {
    margin: 0 0 8px;
    font-size: 1.9rem;
    line-height: 1.12;
    color: #2f2f2f;
}

.about-page__intro p,
.about-page__services p,
.about-page__legal {
    margin: 0;
    line-height: 1.5;
    color: #4f4a41;
}

.about-page__services-title,
.about-page__cta-title {
    margin: 0 0 10px;
    color: #2f2f2f;
}

.about-page__services-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0 0;
}

.about-page__services-item {
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px solid #eee;
    line-height: 1.45;
}

.about-page__services-item:last-child {
    border-bottom: 0;
}

.about-page__services-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 12px;
    border: solid #e4002b;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.about-page__cta {
    background: #f8f4ec;
}

.about-page__cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.about-page__cta-copy {
    flex: 1 1 520px;
    min-width: 260px;
}

.about-page__cta-subtitle {
    margin: 0;
    line-height: 1.45;
    color: #4f4a41;
}

.about-page__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #d32f2f;
    color: #fff;
    border: 1px solid #d32f2f;
    border-radius: 8px;
    padding: 12px 22px;
    font-weight: 700;
}

.about-page__cta-button:hover {
    background: #b71c1c;
}

.about-page__cta-button:focus-visible {
    outline: 2px solid #b71c1c;
    outline-offset: 3px;
}

.about-page__map-frame {
    margin-top: 12px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 4px;
    background: #fff;
}

.about-page__map-iframe {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 7px;
}

@media (max-width: 680px) {
    .about-page__title {
        font-size: 1.6rem;
    }

    .about-page__intro,
    .about-page__services,
    .about-page__cta,
    .about-page__map {
        padding: 12px;
    }
}
