.about-block {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
.about-block .about-container {
    width: 50%;
    background: #fff;
    border-radius: 16px;
    padding: 60px 40px 40px;
    display: flex;
    flex-direction: column;
}
.text_about {
    padding-bottom: 20px;
}
.tittle_about {
    margin-bottom: 20px;
    color: #000;
    font-size: 22px;
    line-height: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.tittle_about:before {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    background: #8F1423;
    border-radius: 50%;
}
.name-text {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    color: #000;
}
.name-text p {
    margin: 0 0 12px;
}
.name-text .more-link {
    display: flex;
}
.name-text .more-link a {
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #656565;
    transition: all 0.3s;
}
.name-text .more-link a:hover {
    color: #8F1423;
}
.extra-list {
    display: flex;
    margin-top: auto;
    gap: 50px;
    flex-wrap: wrap;
}
.extra-list .extra-item {
    line-height: 1.2;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.02em;
}
.extra-list .extra-item .icon {
    display: block;
    margin-bottom: 20px;
}
.extra-list .extra-item h3 {
    font-size: 18px;
    margin: 0 0 6px;
    line-height: 1.2;
    font-weight: 600;
    color: #000;
}
.extra-list .extra-item p {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}
.about-block .illustration {
    width: 50%;
    background: #DBD7D6;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.about-block .illustration img {
    display: block;
}