


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

        .footer_inner {
            display: block;
            text-align: center;
            align-items: center;
            max-width: 1024px;  /* Максимальная ширина */
            min-height: 371px;
            margin: 0 auto;  /* Центрируем по горизонтали */
            box-sizing: border-box;  /* Включаем отступы в расчет размера */
        }

        /* Добавляем отступы слева и справа, но не изменяем ширину */
        @media (max-width: 1024px) {
            .footer_inner {
                margin-left: 40px;  /* Отступ слева */
                margin-right: 40px;  /* Отступ справа */
            }
        }





        .footer_title {
            font-family: Helvetica, Arial, sans-serif;
            text-align: center;
            font-size: 34px;
            font-weight: bold;
            color: #ffffff;
            padding-top: 96px;
            margin-bottom: 29px;
        }


        .footer_social {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 40px;
        }
        .footer_social a {
            width: 40px;
            height: 40px;
            display: block;
            background-color: #fff;
            border-radius: 0px;
            text-align: center;
            line-height: 40px;
            transition: transform 0.2s ease;
        }

        .footer_social a:hover {
            transform: translateY(-3px);
        }

        .footer_social img {
            width: 40px;
            height: 40px;
        }



        .footer_links {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 14px;
            font-weight: bold;
            color: #ffffff;
            display: flex;
            justify-content: center;
            gap: 10px;
            align-items: center;
            margin-bottom: 0px;
            flex-wrap: wrap; /* Allows links to wrap onto the next line when space is tight */
            line-height: 18px; /* Расстояние между строками */

        }

        .footer_links a {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 14px;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
        }

        .footer_links a:hover {
            text-decoration: underline;
        }

        .footer_links_divider {
            background-color: #3a3838;
            width: 2px;
            height: 10px;
        }



        .footer_text {
            font-family: Helvetica, Arial, sans-serif;
            text-align: center;
            font-size: 14px;
            font-weight: normal;
            color: #8d8d8d;
            line-height: 24px; /* Расстояние между строками */
            margin-top: 24px;
        }



        .footer_blank_space {
            width: 200px;
            height: 40px;
        }

