    .footer {
        width: 100%;
        background-color: #414042;
    }

    .footerInner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0 30px;
    }

    .footerLogoImg {
        width: 135px;
        height: 95px;
    }

    .footerLogoText {
        position: relative;
        font-size: 12px;
        color: #E8B125;
        margin-top: -20px;
    }

    .footerLogoTextBold {
        font-size: 16px;
    }

    .footerData {
        color: #BDBDBD;
        font-size: 14px;
        margin-top: 20px;
    }

    .footerInnerTwo {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .footerInnerTwoContent,
    .footerInnerThreeUrl,
    .footerPhoneText {
        color: #ffffff;
        transition: all 0.5s ease;
    }

    .footerInnerTwoContent {
        font-size: 16px;
    }

    .footerInnerTwoContent:hover {
        text-decoration: underline;
        color: #E8B125;
    }

    .footerInnerThreeUrl {
        font-size: 14px;
        text-decoration: underline;
        margin-bottom: 10px;
    }

    .footerInnerMess {
        display: flex;
        gap: 10px;
    }

    .footerMessImg {
        width: 30px;
        height: 30px;
        transition: transform 0.3s ease;
    }

    .footerMessImg:hover {
        transform: scale(1.1);
    }

    .footerInnerPhone {
        display: flex;
        align-items: start;
        margin-bottom: 10px;
    }

    .footerPhoneImg {
        width: 20px;
        height: 20px;
    }

    .footerPhoneText {
        font-size: 14px;
        margin-left: 10px;
    }

    .footerInnerFourUnder {
        color: #939598;
        font-size: 14px;
    }

    .footerInnerBtn {
        margin-top: 20px;
    }

    .footerBtn {
        font-size: 16px;
        font-weight: 600;
        color: #414042;
        padding: 15px 30px;
        background-color: #E8B125;
        border-radius: 8px;
        transition: all 0.5s ease;
        display: inline-block;
    }

    .footerBtn:hover {
        background-color: #FFD400;
    }

    .footerPolit {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
    }

    .footerPolitContent {
        color: #ffffff;
        font-size: 18px;
        text-decoration: underline;
    }

    /* Медиа-запросы */
    @media (max-width: 1199px) {
        .footerInner {
            display: block;
            padding: 20px 0 35px;
        }

        .footerLogoImg {
            width: 90px;
            height: 75px;
        }

        .footerLogoText {
            font-size: 10px;
            margin-top: -15px;
        }

        .footerLogoTextBold {
            font-size: 14px;
        }

        .footerData {
            font-size: 12px;
            margin: 10px 0;
        }

        .footerInnerTwo {
            width: 50%;
            margin-bottom: 20px;
        }

        .footerInnerThree {
            margin-bottom: 20px;
        }

        .footerPolit {
            padding: 20px 0;
        }

        .footerPolitContent {
            font-size: 16px;
        }
    }

    @media (max-width: 619px) {
        .footerInnerTwo {
            width: 90%;
        }
        
        .footerPolit{
        flex-direction: column;
        text-align: center;
        }
    }