.c-about-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 56px 0;
}

.c-about-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-primary);
}

header
    ~ #maincontent
    .container
    .c-about-breadcrumb
    a.c-about-breadcrumb__link:not(.btn-primary):not(.btn-outline-primary) {
    color: var(--skin-link-color-1);
    text-decoration: none;
    font-weight: 500;
}

header
    ~ #maincontent
    .container
    .c-about-breadcrumb
    a.c-about-breadcrumb__link:not(.btn-primary):not(
        .btn-outline-primary
    ):hover {
    color: var(--skin-link-color-1);
    text-decoration: underline;
}

.c-about-breadcrumb__sep {
    color: #9ca3af;
}

.c-about-breadcrumb__current {
    color: var(--color-primary);
    font-weight: 400;
}

.c-about-hero__title {
    margin: 0;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #14213d;
    text-align: center;
    overflow-wrap: break-word;
}

.c-about {
    padding: 40px 0 64px;
}

.c-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 56px;
}

.c-about__grid:last-child {
    margin-bottom: 0;
}

.c-about__heading {
    margin: 0 0 18px 0;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
    color: #14213d;
    overflow-wrap: break-word;
}

.c-about__text {
    color: #334155;
    font-size: 17px;
    line-height: 1.85;
    overflow-wrap: break-word;
    word-break: break-word;
}

.c-about__text p {
    margin: 0 0 22px 0;
}

.c-about__text p:last-child {
    margin-bottom: 0;
}

.c-about__text h1,
.c-about__text h2,
.c-about__text h3,
.c-about__text h4,
.c-about__text h5,
.c-about__text h6 {
    margin: 32px 0 16px;
    color: #14213d;
    font-weight: 700;
    line-height: 1.25;
    overflow-wrap: break-word;
}

.c-about__text h1 {
    font-size: 36px;
}

.c-about__text h2 {
    font-size: 30px;
}

.c-about__text h3 {
    font-size: 24px;
}

.c-about__text h4 {
    font-size: 20px;
}

.c-about__text h5,
.c-about__text h6 {
    font-size: 18px;
}

.c-about__text ul,
.c-about__text ol {
    margin: 0 0 24px 24px;
    padding: 0;
}

.c-about__text li {
    margin-bottom: 10px;
}

.c-about__text a {
    color: var(--skin-content-link-color);
    text-decoration: none;
    font-weight: 500;
    overflow-wrap: break-word;
}

.c-about__text a:hover {
    color: var(--skin-content-link-hover-color);
    text-decoration: underline;
}

.c-about__text img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 10px;
}

.c-about__text iframe,
.c-about__text video,
.c-about__text embed,
.c-about__text object {
    max-width: 100%;
}

.c-about__text hr {
    border: 0;
    border-top: 1px solid #dbe3ee;
    margin: 28px 0;
}

.c-about__text blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid #1f4b99;
    background: #f8fafc;
    color: #334155;
}

.c-about__text table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.c-about__text th,
.c-about__text td {
    border: 1px solid #dbe3ee;
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
    min-width: 120px;
}

.c-about__text th {
    background: #f8fafc;
    color: #14213d;
    font-weight: 600;
}

.c-about__img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ddd;
}

/* Animation styles */
.c-about__text,
.c-about__media {
    opacity: 0;
    transform: translateY(30px);
    animation: popUp 0.6s ease-out forwards;
}

.c-about__grid--top .c-about__text {
    animation-delay: 0.2s;
}

.c-about__grid--top .c-about__media {
    animation-delay: 0.4s;
}

.c-about__grid--bottom .c-about__media {
    animation-delay: 0.6s;
}

.c-about__grid--bottom .c-about__text {
    animation-delay: 0.8s;
}

@keyframes popUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .c-about-hero {
        padding: 32px 0;
    }

    .c-about-breadcrumb {
        margin-bottom: 16px;
        font-size: 13px;
    }

    .c-about-hero__title {
        font-size: 40px;
    }

    .c-about {
        padding: 24px 16px 40px;
    }

    .c-about__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 0;
    }

    .c-about__heading {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .c-about__text {
        font-size: 16px;
        line-height: 1.8;
    }

    .c-about__grid--top {
        margin-bottom: 32px;
    }

    .c-about__grid--top .c-about__media {
        order: -1;
        margin-bottom: 8px;
        animation-delay: 0.1s;
    }

    .c-about__grid--top .c-about__text {
        margin-bottom: 32px;
        animation-delay: 0.3s;
    }

    .c-about__grid--bottom {
        gap: 0;
    }

    .c-about__grid--bottom .c-about__text {
        margin-bottom: 32px;
        animation-delay: 0.5s;
    }

    .c-about__grid--bottom .c-about__media {
        animation-delay: 0.7s;
    }
}

@media (max-width: 767px) {
    .c-about-breadcrumb {
        gap: 6px;
        margin-bottom: 18px;
        font-size: 13px;
    }

    .c-about-hero__title {
        font-size: 32px;
        line-height: 1.15;
    }

    .c-about__text {
        font-size: 15px;
        line-height: 1.75;
    }

    .c-about__text p {
        margin-bottom: 18px;
    }

    .c-about__text h1 {
        font-size: 26px;
        margin: 26px 0 14px;
    }

    .c-about__text h2 {
        font-size: 22px;
        margin: 24px 0 12px;
    }

    .c-about__text h3 {
        font-size: 19px;
        margin: 22px 0 12px;
    }

    .c-about__text h4 {
        font-size: 17px;
        margin: 20px 0 10px;
    }

    .c-about__text h5,
    .c-about__text h6 {
        font-size: 16px;
    }

    .c-about__text ul,
    .c-about__text ol {
        margin: 0 0 20px 20px;
    }

    .c-about__text blockquote {
        padding: 14px 16px;
        margin: 20px 0;
    }

    .c-about__text th,
    .c-about__text td {
        padding: 10px 12px;
        min-width: 100px;
    }
}

@media (max-width: 576px) {
    .c-about {
        padding: 20px 16px 32px;
    }

    .c-about-breadcrumb {
        gap: 6px;
        margin-bottom: 12px;
        font-size: 12px;
    }

    .c-about-hero__title {
        font-size: 28px;
    }

    .c-about__heading {
        font-size: 18px;
    }

    .c-about__text {
        font-size: 14px;
    }
}
