.aboutus5-section {
    padding: 50px 0;
    background-color: #000000;
    color: #ffffff;
}

.aboutus5-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.aboutus5-left {
    flex: 1;
}

.aboutus5-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.aboutus5-right {
    flex: 1.5;
}

.aboutus5-section .title {
    font-size: 42px;
    /* Standardized to 42px */
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 30px;
}

.aboutus5-section .title .text-secondary {
    color: #54b248;
}

.aboutus5-section .desc {
    font-size: 18px;
    line-height: 1.7;
    /* Match Home Page */
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 400;
}

.aboutus5-mission-vision {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.mv-box {
    flex: 1;
}

.aboutus5-section .subtitle {
    font-size: 24px;
    color: #54b248;
    /* Brand Green */
    margin-bottom: 15px;
    font-weight: 700;
}

.aboutus5-section .desc {
    font-size: 18px;
    /* Standardize to 18px */
    line-height: 1.6;
    color: #eeeeee;
    /* Standardize to #eeeeee */
}

/* Awards Section */
.aboutus5-awards-section {
    margin-top: 40px;
}

.awards-grid {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.award-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: 1px solid #333;
    padding-left: 20px;
}

.award-item:first-child {
    border-left: none;
    padding-left: 0;
}

.award-item img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.award-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.award-year {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.award-name {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.4;
}

/* Response Design */
@media (max-width: 1024px) {
    .aboutus5-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        padding: 0 20px;
    }

    .aboutus5-right .title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .aboutus5-mission-vision {
        text-align: left;
        justify-content: center;
    }

    .awards-grid {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .aboutus5-section .title {
        font-size: 32px;
    }

    .aboutus5-mission-vision {
        flex-direction: column;
        gap: 30px;
    }

    .award-item {
        border-left: none;
        padding-left: 0;
        width: 100%;
        margin-bottom: 20px;
    }
}