/* =========================================
   NEW ABOUT US SECTION STYLES
   ========================================= */

.about-us-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-direction: row-reverse;
}

.about-text-column {
    flex: 1;
    text-align: right;
}

.about-image-column {
    flex: 1;
}

.section-header-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a192f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header-left .header-line {
    display: block;
    width: 60px;
    height: 4px;
    background-color: #3FA9F5;
    border-radius: 2px;
    margin-bottom: 30px;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-primary-custom {
    background-color: #0D1D73;
    color: white;
    padding: 12px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-primary-custom:hover {
    background-color: #06113F;
}

.image-card {
    background-color: #f0f4f8;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .about-content-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .about-text-column {
        text-align: center;
    }

    .section-header-left .header-line {
        margin: 0 auto 30px;
    }
}