    body {
        background-color: #fff;
    }

    /* TABS */
    section.about.tabs {
        background-color: #fff;
        padding-top: 0 !important;
    }

    section.about.tabs .tab_links {
        display: flex;
        gap: 40px;
        position:relative;
        background-color: #fff;
        justify-content: flex-start;
    }

    section.about.tabs .tab_links a {
        text-decoration: none;
        color: #6B7280;
        font-weight: 500;
        font-size: 16px;
        text-transform: uppercase;
        padding-bottom: 10px;
        position: relative;
    }

    section.about.tabs .tab_links a.active {
        color: #161F37;
    }

    section.about.tabs .tab_links a.active:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        width: 80%;
        height: 6px;
        background-color: #161F37;
        transform: translateX(-50%);
    }

    section.about.tabs .tab_content {
        display: none !important;
    }

    section.about.tabs .tab_content.active {
        display: block !important;
    }

    /* HERO */
    section.hero {
        background-color: #161F37;
        /* background-image: url(../img/mediahero.png); */
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        color: #fff;
        text-transform: uppercase;
        height: auto;
        min-height: 300px;
        display: flex;
        align-items: center;
    }

    section.hero h1 {
        color: #fff !important;
        margin: 0;
        line-height: 1.2;
    }

    /* DOCUMENTS */
    section.documents {
        padding: 100px 0 120px;
        scroll-snap-align: start;
        color: #183A5C;
    }

    section.documents .title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        gap: 20px;
        position: relative;
    }

    section.documents .title h2 {
        margin: 0;
        text-transform: uppercase;
        white-space: nowrap;
        position: relative;
    }

    section.documents .title hr {
        flex: 1;
        height: 1px;
        border: none;
        background-color: #B9CBDA;
        margin: 0;
    }

    section.documents .items {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    section.documents .items .item {
        background-color: #fff;
        padding: 20px 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: none;
        transition: none;
    }

    section.documents .items .item:hover {
        box-shadow: none;
        border-color: transparent;
    }

    section.documents .items .item .info p {
        margin: 0;
        font-size: 13px;
        font-weight: 600;
        color: #9CA3AF;
        text-transform: uppercase;
    }

    section.documents .items .item .info h3 {
        margin: 0;
        color: #183A5C !important;
        font-weight: 700 !important;
        font-size: 34px;
    }

    section.documents .items .item .button_animation {
        width: fit-content;
        display: flex;
        align-items: center;
        padding: 14px 16px;
        color: #161F37;
        text-decoration: none;
        font-family: var(--font-family);
        justify-content: space-between;
        gap: 50px;
        background-color: #F9F9F9;
        font-size: 14px;
        font-weight: 500;
        max-height: 45px;
    }

    section.documents .items .item .button_animation .icon-holder {
        width: 36px;
        height: 36px;
        background: #377EC2;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    section.documents .items .item .button_animation .icon-holder img {
        width: 14px;
        height: 14px;
        padding: 0;
        background: none;
    }

    /* Hero / Sections Padding */
    section.press,
    section.documents,
    section.blog_section {
        padding: 40px 0 !important;
        background-color: #fff;
    }

    section.documents {
        background-color: #F8F9FA;
    }

    /* Standard Header for all titles in media page */
    .tab_content .title .h2 {
        font-size: 36px !important;
        font-weight: 700 !important;
        margin-bottom: 25px !important;
        position: relative;
        text-transform: uppercase;
        color: #161F37;
        margin-top: 0;
        line-height: 1.2;
    }

    /* Standardizing Title Containers */
    .tab_content .title {
        display: flex;
        justify-content: space-between;
        align-items: center; /* Changed from flex-end to center for better alignment */
        margin-bottom: 30px;
        /* Space between title row and content */
        border-bottom: none;
        padding: 0;
    }

    /* Resetting any flex interference from global styles */
    .tab_content .blog .title {
        display: flex !important;
        margin-bottom: 30px !important;
    }

    .tab_content .blog .title .h2 {
        margin-bottom: 0 !important;
        /* Margin is handled by the container */
    }

.blog_grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .blog_item {
        text-decoration: none;
        display: block;
        transition: transform 0.3s ease;
    }


    /* Featured Post (Big one) */
    .blog_item.featured {
        grid-column: span 2;
        position: relative;
        height: 480px;
        overflow: hidden;
    }

    .blog_item.featured:after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    }

    .blog_item.featured img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog_item.featured .content {
        position: absolute;
        bottom: 30px;
        left: 30px;
        right: 30px;
        z-index: 2;
        color: #fff;
    }

    .blog_item.featured .content .date {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 10px;
    }

    .blog_item.featured .content h3 {
        font-size: 24px !important;
        font-weight: 700 !important;
        color: #fff !important;
        margin-bottom: 15px;
        text-transform: uppercase;
        line-height: 1.3;
    }

    .blog_item.featured .content .meta {
        font-size: 15px;
        color: #fff;
    }

    .blog_item.featured .content .meta span {
        font-weight: 400;
        opacity: 0.8;
    }

    /* Regular posts in grid */
    .blog_item .image-wrapper {
        position: relative;
        height: 280px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .blog_item .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog_item .overlay-icon {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: #161F37;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.8;
    }

    .blog_item .overlay-icon img {
        width: 15px;
        height: 15px;
    }

    .blog_item .item-details {
        padding: 0 5px;
    }

    .blog_item .item-details .date {
        font-size: 13px;
        color: #9CA3AF;
        margin-bottom: 10px;
    }

    .blog_item .item-details h3 {
        font-size: 18px !important;
        color: #1e2631 !important;
        font-weight: 700 !important;
        line-height: 1.4;
        margin-bottom: 12px;
        height: 50px;
        overflow: hidden;
    }

    .blog_item .item-details .meta {
        font-size: 14px;
        color: #3B82F6;
        /* Bright blue for category */
    }

    .blog_item .item-details .meta span {
        color: #6B7280;
        font-weight: 400;
    }

    /* RESPONSIVE */


    @media (max-width: 1024px) {
        .blog_grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .blog_item.featured {
            grid-column: span 2;
        }
    }

    @media (max-width: 768px) {

        /* section.about.tabs .tab_links,
        section.documents .container,
        section.hero {
            padding-left: 20px;
            padding-right: 20px;
        } */

        section.about.tabs .tab_links {
            gap: 20px;
            overflow-x: auto;
        }

        section.hero h1 {
            font-size: 32px !important;
        }

        section.documents .items .item {
            padding: 25px 20px;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        section.documents .items .item h3 {
            font-size: 24px !important;
            margin-top: 5px;
        }

        section.documents .items .item .button_animation {
            width: 100%;
            justify-content: center;
            gap: 30px;
            background-color: #F9F9F9;
            color: #161F37;
        }

        section.documents .items .item .button_animation .icon-holder {
            background-color: #377EC2;
        }
        
        section.documents .items .item .button_animation .icon-holder img {
            filter: none;
        }

        .blog_grid {
            grid-template-columns: 1fr;
        }

        .blog_item.featured {
            grid-column: span 1;
            height: 350px;
        }
    }

    .blog .posts .post {
        width: 394px !important;
        padding: 0;
        height: auto;
        text-decoration: none;
        display: flex;
        flex-direction: column;
    }

    .post-details {
        background-color: #F9F9F9;
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    /* Apply container */
    .apply_container {
        width: 100%;
        height: 630px;
        place-content: center;
        justify-items: center;
        text-align: center;
        background: linear-gradient(0deg, #183a5cc7, #183a5cc7), url(../img/careerjoin.png);
        color: #fff;
        scroll-snap-align: start;
        background-size: cover;
        background-position: center;
    }

    .apply_container h2 {
        font-size: 48px;
        margin: 0;
        color: #fff !important; /* Force white color */
    }

    .apply_container p {
        width: 50%;
        margin: 10px auto;
        color: #fff;
    }

    .apply_container a {
        color: #fff;
        border-color: #fff;
        margin: 20px auto;
        width: fit-content;
        display: flex;
        align-items: center;
        padding: 14px 16px;
        border: 1px solid #fff;
        text-decoration: none;
        font-family: var(--font-family);
        justify-content: space-between;
        gap: 50px;
    }

    .apply_container a .icon-holder {
        width: 36px;
        height: 36px;
        background: #377EC2;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    @media only screen and (max-width: 991px) {
        .apply_container {
            height: auto;
            padding: 60px 20px;
        }

        .apply_container h2 {
            font-size: 32px;
        }

        .apply_container p {
            width: 100%;
        }
    }
    /* Press Swiper */
    .press-swiper {
        width: 100%;
        overflow: hidden;
    }

    .blog .posts .press-swiper .post {
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        height: 100%;
        background-color: transparent;
        text-decoration: none;
    }

    .press-swiper .post img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    
    .press-swiper .swiper-slide {
        height: auto;
        display: flex;
    }

    /* Media Reference Form */
    .media_referance_form {
        width: 100%;
        max-width: 650px;
        margin: 40px auto 0;
        border: 1px solid #fff;
        padding: 10px;
        background: transparent;
        backdrop-filter: none;
        height: auto;
        display: block;
    }

    .media_referance_form .form_inner {
        display: flex;
        width: 100%;
        background: transparent;
        height: 60px;
        align-items: center;
        padding-left: 0;
        gap: 10px;
    }

    .media_referance_form input {
        flex: 1;
        background: rgba(24, 58, 92, 0.66);
        border: none;
        padding: 0 30px;
        color: #fff;
        outline: none;
        height: 100%;
        font-family: var(--font-family);
        font-size: 15px;
        letter-spacing: 0.5px;
        font-weight: 300;
    }

    .media_referance_form input::placeholder {
        color: #fff;
        text-transform: uppercase;
        font-weight: 300;
        opacity: 0.9;
    }

    .media_referance_form button {
        background: rgba(24, 58, 92, 0.66);
        border: none;
        color: #fff;
        display: flex;
        align-items: center;
        padding: 0 6px 0 20px;
        gap: 20px;
        cursor: pointer;
        font-weight: 400;
        height: 100%;
        min-width: 140px;
        justify-content: space-between;
        margin: 0;
        font-size: 15px;
        transition: all 0.3s ease;
        border-right: none;
    }

    /* Disable global button animation scale if presents */
    .media_referance_form button.button_animation:hover {
        transform: none;
    }

    .media_referance_form button span {
        font-weight: 400;
        letter-spacing: 0.5px;
    }

    .media_referance_form button .icon-holder {
        width: 38px; /* Slightly larger squarish look */
        height: 38px;
        background: #377EC2;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
        border-radius: 2px; /* Slight radius maybe? kept sharp for strict look */
    }

    .media_referance_form button:hover .icon-holder {
        background-color: #2c6aa8;
    }

    /* Responsive */
    @media only screen and (max-width: 768px) {
        .media_referance_form {
            border: none;
            padding: 0;
            background: transparent;
            max-width: 100%;
        }

        .media_referance_form .form_inner {
            flex-direction: column;
            background: transparent;
            height: auto;
            gap: 15px;
        }
        
        .media_referance_form input {
            width: 100%;
            height: 60px;
            min-height: 60px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            background: rgba(24, 58, 92, 0.66);
            text-align: center;
            appearance: none;
            -webkit-appearance: none;
            border-radius: 0;
        }
        
        .media_referance_form button {
             width: 100%;
             height: 60px;
             border: 1px solid rgba(255, 255, 255, 0.6);
             justify-content: space-between;
             background: rgba(24, 58, 92, 0.66);
             padding: 0 50px;
        }
    }
