
    .mainFooterfot_footer {
        word-break: break-all;
        background: #000000;
        color: #ffffff;
        padding: 30px 0 30px;
        position: relative;
        overflow: hidden;
    }

    .mainFooterfot_left {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mainFooterfot_container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .mainFooterfot_grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 60px;
    }

    .mainFooterfot_bg {
        height: 100%;
        min-height: 500px;
        background-size: cover;
        background-position: center;
        border-radius: 30px;
        background-color: #e62b5a;
        position: relative;
        overflow: hidden;
    }

    .mainFooterfot_content {
        position: relative;
        z-index: 2;
        height: 100%;
        padding: 0 50px;
        border: 1px solid #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .mainFooterfot_title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #ffffff;
    }

    .mainFooterfot_desc {
        font-size: 18px;
        line-height: 1.8;
        color: #ffffff;
    }

    .mainFooterfot_desc p {
        font-size: 18px;
        line-height: 1.8;
        color: #ffffff;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 10;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .mainFooterfot_top {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }

    .mainFooterfot_box h4 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid #e62b5a;
        position: relative;
    }

    .mainFooterfot_box h4::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 60px;
        height: 2px;
        background: #ffffff;
    }

    .mainFooterfot_box ul {
        list-style: none;
        padding: 0;
    }

    .mainFooterfot_box li {
        margin-bottom: 15px;
    }

    .mainFooterfot_box a {
        color: #ffffff;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        position: relative;
        padding: 2px 0;
    }

    .mainFooterfot_box a:hover {
        color: #ffffff;
        transform: translateX(10px);
    }

    .mainFooterfot_bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 40px;
        border-top: 1px solid #183766;
    }

    .mainFooterfot_copyright p {
        color: #ffffff;
        font-weight: 500;
    }

    .mainFooterfot_copyright a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
    }

    .mainFooterfot_social {
        display: flex;
        gap: 20px;
    }

    .mainFooterfot_social_item {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: #e62b5a;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .mainFooterfot_social_item:hover {
        background: #ffffff;
        transform: translateY(-5px);
    }

    .mainFooterfot_social_item svg {
        width: 24px;
        height: 24px;
        fill: #ffffff;
        transition: all 0.3s ease;
    }

    .mainFooterfot_social_item:hover svg {
        fill: #000000;
    }

    @media (max-width: 1200px) {
        .mainFooterfot_container {
            padding: 0 30px;
        }

        .mainFooterfot_top {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 992px) {
        .mainFooterfot_grid {
            grid-template-columns: 1fr;
        }

        .mainFooterfot_bg {
            min-height: 400px;
        }
    }

    @media (max-width: 768px) {
        .mainFooterfot_footer {
            padding: 60px 0 40px;
        }

        .mainFooterfot_container {
            padding: 0 20px;
        }

        .mainFooterfot_top {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .mainFooterfot_bottom {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .mainFooterfot_title {
            font-size: 26px;
        }
    }
