   :root {
        /* Цветовая схема */
        --primary: #40AC5D;
        --primary-dark: #0A8D2D;
        --primary-light: rgba(64, 172, 93, 0.1);
        --accent-blue: #3E6EB4;
        --white: #FFFFFF;
        --black: #121212;
        --gray-light: #F5F5F5;
        --gray-medium: #E0E0E0;
        --gray-dark: #757575;
        --footer-bg: #F8F8F8;
        --footer-text: #333333;
        
        /* Темная тема */
        --bg-dark: #1A1A1A;
        --bg-darker: #121212;
        --text-dark: #E0E0E0;
        --border-dark: #333333;
    }

    [data-theme="dark"] {
        --white: var(--bg-dark);
        --black: var(--text-dark);
        --gray-light: #2D2D2D;
        --gray-medium: #444444;
        --footer-bg: #0A0A0A;
        --footer-text: #CCCCCC;
    }



.banner-container {
  max-width: 1700px;
  margin: 0 auto;
  margin-top: 0px;
  padding: 0 20px;
  margin-top: 5rem;
  margin-bottom: 5rem;
  background:none;
}
.ad-banner{background:none !important;border:none !important;box-shadow:none !important;}
.ad-banner__content{padding:0px;margin:0px;}
  

    .footer {
        background-color: var(--footer-bg);
        color: var(--footer-text);
        padding: 70px 0 30px;
        position: relative;
    }

    .footer-container {
        max-width: 1700px;
        margin: 0 auto;
        padding: 0 30px;
		
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 50px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        margin-bottom: 25px;
        max-width: 200px;
    }

    .footer-logo img {
        width: 100%;
        height: auto;
    }

    .footer-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
        opacity: 0.8;
    }

    .subscribe-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .subscribe-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .subscribe-input {
        padding: 12px 15px;
        border-radius: 6px;
        border: 1px solid rgba(0,0,0,0.2);
        background: rgba(0,0,0,0.05);
        color: var(--black);
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .subscribe-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(64, 172, 93, 0.3);
    }

    .subscribe-btn {
        background: var(--primary);
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .subscribe-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    .footer-social {
        display: flex;
        gap: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        background-color: var(--primary);
        transform: translateY(-3px);
    }

    .social-icon i {
        font-size: 18px;
        color: var(--footer-text);
    }

    .footer-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 25px;
        color: var(--black);
        position: relative;
        padding-bottom: 10px;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--primary);
    }

    .footer-links {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
		margin-bottom: 40px;
    }


	.footer-column ul.footer-links{padding:0px;}

    .footer-links li a {
        color: var(--footer-text);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 14px;
        opacity: 0.8;
        display: inline-block;
    }

    .footer-links li a:hover {
        color: var(--primary);
        opacity: 1;
        transform: translateX(5px);
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 14px;
    }

    .footer-copyright {
        opacity: 0.7;
    }

    .footer-legal {
        display: flex;
        gap: 25px;
    }

    .footer-legal a {
        color: var(--footer-text);
        text-decoration: none;
        transition: color 0.3s ease;
        opacity: 0.8;
    }

    .footer-legal a:hover {
        color: var(--primary);
        opacity: 1;
    }
	
	
/* ===== LEGAL NOTE (нижняя приписка) ===== */
html[data-theme="light"] {
  --footer-legal-fg: rgba(15, 23, 42, 0.72);       /* slate-900 @72% */
  --footer-legal-link: #0b57d0;
  --footer-legal-link-hover: #0842a0;
  --footer-legal-border: rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] {
  --footer-legal-fg: rgba(241, 245, 249, 0.72);    /* slate-100 @72% */
  --footer-legal-link: #8ab4ff;
  --footer-legal-link-hover: #aecbfa;
  --footer-legal-border: rgba(241, 245, 249, 0.14);
}

.footer-legal-note {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--footer-legal-fg);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--footer-legal-border);
  letter-spacing: 0.015em;
  text-align: center;
  padding: 20px;
}

.footer-legal-note p {
  margin: 0 0 8px;
}
.footer-legal-note p:last-child {
  margin-bottom: 0;
}

.footer-legal-note a {
  color: var(--footer-legal-link);
  text-decoration: none;
}
.footer-legal-note a:hover,
.footer-legal-note a:focus-visible {
  color: var(--footer-legal-link-hover);
  text-decoration: underline;
  outline: none;
}




/* SVG-изображение Контейнер кнопок — центрирование и единство размеров */
.footer-social {
  display: flex;
  gap: 10px;           /* как было — можно оставить ваш отступ */
}

/* Пусть размеры остаются как раньше:
   если ранее размер задавался через font-size у .social-icon (например, 20px),
   SVG будет масштабироваться в 1em и сохранит визуальный размер. */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* если у вас были width/height/бордеры — оставьте их */
  /* пример:
  width: 40px;
  height: 40px;
  font-size: 20px;   // размер собственно иконки
  */
}

/* Сам SVG-изображение через <img> */
.social-icon .social-svg {
  width: 1em;
  height: 1em;
  display: block;
  flex: 0 0 auto;
  /* для выравнивания по оптической базовой линии (опционально) */
  vertical-align: -0.125em;
}




/* Узкий неразрывный пробел для красивых номеров */
.nowrap { white-space: nowrap; }

/* Общие штрихи для низа футера (можно оставить, если у вас уже есть похожее) */
.footer-bottom {
  border-top: 1px solid var(--footer-legal-border);
  padding-top: 14px;
  margin-top: 24px;
}



    /* Адаптивность */
    @media (max-width: 1400px) {
        .footer-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 992px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .footer {
            padding: 50px 0 25px;
        }
        
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .footer-bottom {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
        
        .footer-legal {
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
    }

  