/* =========================================
   About Page Styles
   ========================================= */

/* Vision Section */
.vision {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: #B92233;
    background: linear-gradient(100deg, rgba(185, 34, 51, 1) 0%, rgba(121, 42, 54, 1) 40%, rgba(223, 29, 49, 1) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.vision__header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto 80px;
}

.vision__bg-text {
    position: relative;
    bottom: 0px;
    left: 0px;
    transform: none;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
    white-space: nowrap;
    line-height: 1;
}

.vision__title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 30px;
}

.vision__text {
    font-size: 16px;
    line-height: 2;
}

/* Mission Section */
.mission {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.mission__header {
    display: flex;
    align-items: baseline;
    justify-content: space-around;
    margin: 0 auto 80px;
}

.mission__bg-text {
    position: relative;
    bottom: -30px;
    left: 0;
    transform: none;
    font-size: 120px;
    font-weight: 900;
    color: rgba(235, 59, 73, 0.08);
    z-index: 0;
    white-space: nowrap;
    line-height: 1;
}

.mission__intro {
    position: relative;
    top: 0;
    right: 20px;
    z-index: 1;
    max-width: 600px;
    margin: 0;
    font-size: 16px;
    line-height: 2;
    color: #333;
    text-align: left;
    width: 50%;
}

.mission__feature {
    margin-bottom: 80px;
}

.mission__feature:last-child {
    margin-bottom: 0;
}

.mission__feature-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.4;
}

.mission__feature-desc {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

.mission__commitment {
    text-align: center;
    color: #eb3b49;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.5;
    margin-top: 60px;
    margin-bottom: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .vision__header {
        flex-direction: column;
    }

    .vision__bg-text {
        font-size: 80px;
        bottom: -35px;
        left: 0;
    }

    .vision__content {
        margin: 0 auto;
    }

    .vision__title {
        font-size: 32px;
    }

    .mission__header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mission__bg-text {
        font-size: 80px;
        bottom: 0;
        left: 0;
    }

    .mission__intro {
        width: 100%;
        right: 0;
    }

    .mission__feature-title {
        font-size: 24px;
    }

    .mission__commitment {
        font-size: 20px;
    }
}

/* =========================================
   Generic Layout Utilities
   ========================================= */
.split-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.split-layout__content {
    width: 60%;
}

.split-layout__media {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.split-layout__media img {
    max-width: 300px;
    height: auto;
}

@media (max-width: 768px) {
    .split-layout {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .split-layout__content,
    .split-layout__media {
        width: 100%;
    }

    .split-layout__media {
        justify-content: center;
    }
}