.about-wrap {
    position: relative;
    max-width: 550px;
    margin: 0 auto 20px;
}

.about-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
    background: linear-gradient(to right, #0060c9 50%, #701e1e 50%);
    border-radius: 0 0 60px 60px;
    z-index: -1;
    pointer-events: none;
}

.about-card {
    background: #f5f5f5;
    border: 5px solid transparent;
    border-radius: 60px;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: none;
    margin: 0;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    width: calc(50% + 5px);
    border: 5px solid #0060c9;
    border-right: none;
    border-radius: 60px 0 0 60px;
    pointer-events: none;
    z-index: 3;
}

.about-card::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    width: calc(50% + 5px);
    border: 5px solid #701e1e;
    border-left: none;
    border-radius: 0 60px 60px 0;
    pointer-events: none;
    z-index: 3;
}

.about-image {
    width: 80%;
    max-width: 440px;
    margin: 0 auto 15px;
    display: block;
    position: relative;
    z-index: 4;
}

.about-card h3 {
    color: #0060c9;
    font-size: 24px;
    margin: 10px 0 12px;
    display: inline-block;
    padding: 8px 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 4;
}

.about-text {
    background: #fff;
    text-align: center;
    border-radius: 40px;
    padding: 15px 20px;
    font-size: 19px;
    line-height: 1.6;
    position: relative;
    z-index: 4;
}

.about-text p {
    margin: 0 0 8px 0;
}
.about-text p:last-child {
    margin-bottom: 0;
}

.main-layout {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.content-area {
    flex: 0 0 600px;
}

.content-area h2 {
    color: #0060c9;
    display: inline-block;
    padding: 10px 35px;
    margin: 0 0 30px -8px;
    border-radius: 60px;
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    transform: rotate(-1deg);
}

.about-sidebar {
    flex: 0 0 450px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.about-rob-card,
.about-bert-card {
    background: #ffffff;
    text-align: center;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 6px 0 #aaa;
}

.about-rob-card h3,
.about-bert-card h3 {
    color: #0060c9;
    font-size: 28px;
    margin: 0 0 15px 0;
    border-left: 8px solid #ffcc00;
    padding-left: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.about-rob-card p,
.about-bert-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.about-rob-image,
.about-bert-image {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}