/* CSS for section section:Header */
.site-header {
        background-color: var(--color-primary-bg);
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
        padding: 12px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
    }
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        min-height: 80px;
    }
    .header-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .logo-group {
        position: relative;
        width: 81px;
        height: 80px;
    }
    .logo-svg-1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 71.39px;
        height: 70px;
    }
    .logo-img-2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 81px;
        height: 80px;
    }
    .divider {
        width: 1px;
        height: 80px;
        background-color: #000;
    }
    .header-logo-main { 

        height: 95px;
    }
    .main-nav ul {
        display: flex;
        align-items: center;
        gap: 24px;
    }
    .main-nav li {
        position: relative;
    }
    .main-nav li:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 40px;
        background-color: var(--color-border-light);
    }
    .main-nav a {
        font-family: var(--font-main);
        font-size: 18px;
        color: var(--color-text-dark);
        transition: color 0.3s;
    }
    .main-nav a:hover, .main-nav li:first-child a {
        color: var(--color-text-gray);
    }
    .main-nav .dropdown {
        position: relative;
    }
    .main-nav .dropdown-toggle {
        cursor: pointer;
    }
    .main-nav .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        min-width: 280px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        border-radius: 8px;
        padding: 12px 0; 
        z-index: 1000;
    }
    .main-nav .dropdown:hover .dropdown-menu {
        display: block;
    }
    .main-nav .dropdown-menu li {
        list-style: none;
    }
    .main-nav .dropdown-menu li::after {
        display: none !important;
    }
    .main-nav .dropdown-menu a {
        display: block;
        padding: 12px 20px;
        color: var(--color-text-dark);
        text-decoration: none;
        font-size: 16px;
        transition: background 0.2s;
    }
    .main-nav .dropdown-menu a:hover {
        background: #f6f8fa;
        color: var(--color-accent-green-dark);
    }
    .header-right {
        display: flex;
        align-items: center;
        gap: 22px;
    }
    .header-right img {
        width: 22px;
        height: 22px;
    }
    @media (max-width: 1200px) {
        .main-nav { display: none; }
        .header-container { justify-content: space-between; }
    }
    @media (max-width: 768px) {
        .header-left .divider, .header-left .header-logo-main { display: none; }
    }
    
    
    /* Стили для анимации логотипа */
    [data-img-logo] {
        will-change: transform, width, height;
        display: block;
        object-fit: contain;
    }
    
    /* Контейнер в header - всегда фиксированный размер */
    .l-header__logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 157px;
        height: 95px;
        vertical-align: middle;
        flex-shrink: 0; /* Не сжимается */
    }
    
    /* Логотип внутри header контейнера должен быть 157x95 */
    .l-header__logo [data-img-logo] {
        width: 157px !important;
        height: 95px !important;
        object-fit: contain;
    }
    
    /* Статичный логотип в header */
    .l-header__logo-img {
        width: 157px;
        height: 95px;
        object-fit: contain;
        display: block;
    }
    
    /* Скрываем статичный логотип когда появляется анимированный */
    .l-header__logo:has([data-img-logo]) .l-header__logo-img {
        display: none;
    }
    
    /* Контейнер на главном экране (изначально содержит логотип) */
    .b-main-screen__logo {
        display: block;
        width: 100%;
        max-width: 600px;
    }
    
    /* Логотип на главном экране - большой */
    .b-main-screen__logo [data-img-logo],
    .b-main-screen__logo-img,
    .hero-logo-pg {
        display: block;
        width: 100%;
        height: auto;
    }
    
    @media (max-width: 768px) {
        .b-main-screen__logo {
            max-width: 400px;
        }
        
        /* Адаптивный логотип в header для мобильных */
        .l-header__logo {
            width: 123px;
            height: 75px;
        }
        
        .l-header__logo [data-img-logo] {
            width: 123px !important;
            height: 75px !important;
        }
        
        .l-header__logo-img {
            width: 123px;
            height: 75px;
        }
    }
    
    .header-logo-container {
        display: inline-block;
        position: relative; 
        min-height: 95px;
    }

/* CSS for section section:Hero */
.hero-section {
        background-color: rgba(246, 248, 250, 0.5); 
        overflow: hidden;
    }
    @media (max-width: 768px) {
        .hero-section {
            overflow: visible;
        }
    }
    .hero-container {
        display: flex; 
        align-items: center;
    }
    .hero-static-slide {
        flex: 0 0 806px;
        width: 806px;
        height: 450px;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        background-color: #f9f7ee;
    }
    .hero-slider-wrapper {
        flex: 1;
        overflow: hidden;
        position: relative;
        height: 450px;
        display: flex;
        align-items: center;
    }
    @media (max-width: 768px) {
        .hero-slider-wrapper {
            overflow: visible;
        }
    }
    /* Glide.js стили для hero слайдера */
    .hero-slider.glide {
        width: 100%;
        height: 100%;
    }
    .hero-slider .glide__track {
        height: 100%;
        width: 100%;
    }
    .hero-slider .glide__slides {
        height: 100%;
        align-items: center;
    }
    .hero-slider .glide__slide {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .hero-slide {
        flex: 0 0 auto;
        width: 806px;
        height: 450px;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform, opacity;
    }
    .hero-slide.active {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }
    /* Анимация для неактивных слайдов */
    .glide__slide:not(.glide__slide--active) .hero-slide {
        opacity: 0.7;
        transform: scale(0.95);
    }
    .hero-bg-logo {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 40px;
    } 
    .hero-logo-association {
        width: 120px;
        height: 120px;
        z-index: 3;
    }
    .hero-logo-divider {
        width: 2px;
        height: 150px;
        background: #333;
        z-index: 3;
    }
    .hero-logo-merged { 
        z-index: 1;
        width: 240px;
        height: 240px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-bg-pattern {
        width: 240px;
        height: 240px;
        z-index: 2;
    }
    .hero-slide-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    /* Кнопки навигации Glide.js */
    .hero-slider .glide__arrows {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }
    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        border: none;
        width: 50px;
        height: 60px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease, transform 0.3s ease;
        padding: 0;
        pointer-events: auto;
    }
    .slider-btn:hover {
        opacity: 0.8;
        transform: translateY(-50%) scale(1.1);
    }
    .slider-btn:active {
        transform: translateY(-50%) scale(0.95);
    }
    .slider-btn svg {
        width: 100%;
        height: 100%;
        filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
        transition: transform 0.3s ease;
    }
    .slider-btn:hover svg {
        transform: scale(1.1);
    }
    .slider-prev {
        left: 20px;
    }
    .slider-next {
        right: 20px;
    }
    /* Скрываем стандартные кнопки Glide, используем кастомные */
    .hero-slider .glide__arrow:not(.slider-btn) {
        display: none;
    }
    /* Индикаторы (bullets) для слайдера */
    .hero-slider .glide__bullets {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 10;
        pointer-events: auto;
    }
    .hero-slider .glide__bullet {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.8);
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
        outline: none;
    }
    .hero-slider .glide__bullet:hover {
        background-color: rgba(255, 255, 255, 0.8);
        transform: scale(1.2);
    }
    .hero-slider .glide__bullet--active {
        background-color: #fff;
        border-color: #fff;
        width: 32px;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    @media (max-width: 1200px) {
        .hero-container {
            flex-direction: column;
        }
        .hero-static-slide {
            flex: 0 0 auto;
            width: 100%;
            max-width: 806px;
        }
        .hero-slider-wrapper {
            width: 100%;
        }
    }
    @media (max-width: 768px) {
        /* Отступ сверху для hero-section чтобы header не перекрывал */
        .hero-section {
            margin-top: 70px;
            padding-top: 20px;
            padding-bottom: 20px;
            position: relative;
            z-index: 1;
            overflow: visible;
        }
        
        .hero-container {
            flex-direction: column;
            gap: 20px;
            padding: 0;
            position: relative;
            z-index: 1;
            align-items: stretch;
            width: 100%;
            overflow: visible;
            margin-top: 10px;
        }
        
        .hero-static-slide {
            width: 100%;
            max-width: calc(100vw - 40px);
            height: 320px;
            position: relative;
            z-index: 1;
            margin: 0 auto;
            order: 1;
        }
        
        .hero-slider-wrapper {
            width: 100%;
            height: 320px;
            position: relative;
            z-index: 10;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
            overflow: visible;
            order: 2;
            margin-left: -9px;
        }
        
        .hero-slider.glide {
            position: relative;
            z-index: 10;
            width: 100%;
            height: 100%;
            margin: 0 auto;
            overflow: visible;
        }
        
        .hero-slider .glide__track {
            height: 100%;
            width: 100%;
            overflow: visible;
        }
        
        .hero-slider .glide__slides {
            height: 100%;
            width: 100%;
            overflow: visible;
        }
        
        .hero-slider .glide__slide {
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }
        
        .hero-slide {
            width: 100% !important;
            max-width: 100%;
            height: 320px;
            position: relative;
            margin: 0;
            z-index: 1;
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        .hero-slide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: relative;
            z-index: 1;
            opacity: 1 !important;
            visibility: visible !important;
            border-radius: 12px;
        }
        
        /* Убираем эффекты для неактивных слайдов на мобильных */
        .glide__slide:not(.glide__slide--active) .hero-slide {
            opacity: 1 !important;
        }
        
        /* Логотип в hero на мобильных */
        .hero-bg-logo {
            padding: 20px;
        }
        
        .b-main-screen__logo {
            max-width: 250px;
        }
        .slider-btn {
            width: 30px;
            height: 40px;
            z-index: 15;
        }
        .slider-prev {
            left: 5px;
        }
        .slider-next {
            right: 5px;
        }
        /* Индикаторы на мобильных */
        .hero-slider .glide__bullets {
            bottom: 15px;
            gap: 8px;
            z-index: 15;
        }
        .hero-slider .glide__bullet {
            width: 10px;
            height: 10px;
        }
        .hero-slider .glide__bullet--active {
            width: 24px;
        }
    }
    
    /* Дополнительные анимации для Glide.js */
    .glide__slide {
        transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .glide__slide--active .hero-slide {
        animation: slideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: scale(0.95) translateY(20px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
    .hero-slide-img {
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .glide__slide--active .hero-slide-img {
        transform: scale(1.05);
    }

/* CSS for section section:CtaAndQuote */
.cta-quote-section {
        background-color: var(--secondary-bg);
        background-image: url('images/2bb49db5963b27a65161a401111eac540a7b2292.png');
        padding: 60px 0;
    }
    .cta-container {
        display: flex;
        gap: 24px;
        margin-bottom: 38px;
    }
    .cta-card {
        flex: 1;
        height: 272px;
        border-radius: 20px;
        box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.25);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding: 40px;
        color: var(--color-text-light);
        background-size: cover;
        background-position: center;
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-size 0.35s ease;
    }
    .cta-card:hover {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
        background-size: 108%;
    }
    .cta-card-1:hover,
    .cta-card-3:hover {
        transform: translateY(-6px);
    }
    .cta-card-2:hover {
        transform: scaleX(-1) translateY(-6px);
    }
    .cta-card-1 {
        background-image: url('images/1fa317bead0c0fad2d7d375fb067fe7642f6ea57.png');
    }
    .cta-card-2 {
        background-image: url('images/1fa317bead0c0fad2d7d375fb067fe7642f6ea57.png');
        transform: scaleX(-1);
    }
    .cta-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        border-radius: 20px;
        transition: opacity 0.3s ease;
    }
    .cta-card:hover::before {
        opacity: 0.92;
    }
    .cta-card-1::before {
        background-color: rgba(80, 141, 81, 0.7);
    }
    .cta-card-2::before {
        background-color: rgba(67, 67, 67, 0.5);
    }
    .cta-card-3 {
        background-image: url('images/1fa317bead0c0fad2d7d375fb067fe7642f6ea57.png');
    }
    .cta-card-3::before {
        background-color: rgba(72, 98, 132, 0.62);
    }
    .cta-card h3, .cta-card img {
        position: relative;
        z-index: 1;
    }
    .cta-card-2 h3, .cta-card-2 img {
        transform: scaleX(-1);
    }
    .cta-card h3 {
        font-family: var(--font-heading);
        font-size: 33px;
        line-height: 46px;
        text-shadow: 0px 4px 4px rgba(0,0,0,0.5);
    }
    .cta-banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: linear-gradient(0deg, #f9f7ee 0%, #cccccc 100%);
        border-radius: 80px;
        padding: 32px 48px;
        margin-bottom: 60px;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .cta-banner:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    }
    .cta-banner p {
        font-family: var(--font-main);
        font-weight: 700;
        font-size: 32px;
    }
    .cta-button {
        display: flex;
        align-items: center;
        gap: 16px;
        background-color: var(--color-accent-green-dark);
        color: var(--color-text-light);
        padding: 22px 36px;
        border-radius: 50px;
        font-family: var(--font-inter);
        font-weight: 700;
        font-size: 24px;
        text-decoration: none;
        transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    }
    .cta-button:hover {
        transform: scale(1.04);
        filter: brightness(1.08);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    @media (prefers-reduced-motion: reduce) {
        .cta-card,
        .cta-card::before,
        .cta-banner,
        .cta-button {
            transition: none;
        }
        .cta-card:hover {
            background-size: cover;
            box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.25);
        }
        .cta-card:hover::before {
            opacity: 1;
        }
        .cta-card-1:hover,
        .cta-card-3:hover,
        .cta-banner:hover,
        .cta-button:hover {
            transform: none;
        }
        .cta-card-2:hover {
            transform: scaleX(-1);
        }
        .cta-banner:hover {
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
        }
        .cta-button:hover {
            filter: none;
            box-shadow: none;
        }
    }
    .quote-container {
        display: flex;
        gap: 24px;
        align-items: center;
    }
    .quote-text {
        flex: 1;
        border-left: 1px solid var(--color-text-light);
        padding-left: 26px;
        color: var(--color-text-light);
    }
    .quote-text p {
        font-family: var(--font-inter);
        font-weight: 700;
        font-size: 32px;
        line-height: 35px;
        text-shadow: 0px 4px 4px rgba(0,0,0,0.25);
        margin-bottom: 30px;
    }
    .quote-text footer {
        font-family: var(--font-main);
        font-weight: 700;
        font-size: 32px;
        text-align: right;
        text-shadow: 0px 4px 4px rgba(0,0,0,0.25);
    }
    .quote-image-wrapper {
        flex-shrink: 0;
        width: 728px;
        height: 419px;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
        transition: box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
            transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .quote-image-wrapper:hover {
        transform: translateY(-8px);
        box-shadow: 0px 22px 44px rgba(0, 0, 0, 0.26);
    }
    .quote-image-wrapper::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(270deg, rgba(239, 233, 223, 0) 60%, #efe9df 77%);
        border-radius: 20px;
        z-index: 2;
        pointer-events: none;
        transition: opacity 0.45s ease;
    }
    .quote-image-wrapper:hover::before {
        opacity: 0.88;
    }
    .quote-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 1;
        display: block;
        transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1),
            filter 0.45s ease;
    }
    .quote-image-wrapper:hover img {
        transform: scale(1.06);
        filter: brightness(0.96);
    }
    @media (max-width: 1200px) {
        .cta-container, .quote-container { flex-direction: column; }
        .cta-card { width: 100%; }
        .quote-image-wrapper { width: 100%; }
    }
    @media (max-width: 768px) {
        .cta-banner { flex-direction: column; gap: 20px; text-align: center; }
        .cta-card h3, .quote-text p, .quote-text footer { font-size: 24px; line-height: 1.3; }
    }

/* CSS for section section:News */
.news-section {
        background-color: var(--secondary-bg);
        padding: 96px 0;
        background-color: #EEE5CC;
    }
    .news-container {
        display: flex;
        gap: 40px;
    }
    .news-main {
        flex: 2;
    }
    .news-sidebar {
        flex: 1;
        max-width: 504px;
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .news-sidebar:hover {
        transform: translateY(-3px);
    }
    .news-sidebar h2 {
        transition: color 0.35s ease, letter-spacing 0.35s ease;
    }
    .news-sidebar:hover h2 {
        color: var(--color-accent-green);
        letter-spacing: 2.4px;
    }
    .news-main h2, .news-sidebar h2 {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 42px;
        line-height: 59px;
        letter-spacing: 2.1px;
        margin-bottom: 30px;
    }
    .news-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-bottom: 32px;
    }
    .news-card, .news-card-large {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        color: var(--color-text-light);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        display: flex;
        align-items: flex-end;
        padding: 20px;
        transition: box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
            transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .news-card:hover,
    .news-card-large:hover {
        box-shadow: 0px 18px 36px rgba(0, 0, 0, 0.3);
        transform: translateY(-8px) scale(1.02);
    }
    .news-card:focus-visible,
    .news-card-large:focus-visible {
        box-shadow: 0px 18px 36px rgba(0, 0, 0, 0.3);
        transform: translateY(-8px) scale(1.02);
        outline: 3px solid var(--color-accent-green);
        outline-offset: 4px;
    }
    .news-card { height: 298px; }
    .news-card-large { height: 313px; }
    .news-card-bg {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        object-fit: cover;
        z-index: 1;
        transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1),
            filter 0.45s ease;
    }
    .news-card:hover .news-card-bg,
    .news-card:focus-visible .news-card-bg,
    .news-card-large:hover .news-card-bg,
    .news-card-large:focus-visible .news-card-bg {
        transform: scale(1.08);
        filter: brightness(0.93);
    }
    .news-card-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(0deg, #241f1f 0%, rgba(0, 0, 0, 0) 59.3%);
        z-index: 2;
    }
    .news-card p, .news-card-large p {
        position: relative;
        z-index: 3;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 20px;
        line-height: 28px;
        letter-spacing: 1px;
        text-shadow: 0px 4px 4px rgba(0,0,0,0.5);
        transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
            text-shadow 0.45s ease;
    }
    .news-card:hover p,
    .news-card:focus-visible p,
    .news-card-large:hover p,
    .news-card-large:focus-visible p {
        transform: translateY(-6px);
        text-shadow: 0px 6px 18px rgba(0, 0, 0, 0.65);
    }
    .news-list-wrapper {
        background-color: var(--color-accent-green);
        border: 2px solid rgba(153, 125, 125, 0.5);
        border-radius: 20px;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        height: 976px;
        padding: 30px;
        position: relative;
        overflow: hidden;
        transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
            border-color 0.4s ease,
            transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .news-sidebar:hover .news-list-wrapper {
        box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.22);
        border-color: rgba(255, 255, 255, 0.45);
        transform: scale(1.01);
    }
    .news-list {
        height: 100%;
        overflow-y: auto;
        padding-right: 20px; /* for scrollbar */
    }
    .news-list-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 132px;
        background: linear-gradient(180deg, rgba(56, 124, 57, 0) 0%, #387c39 65%);
        border-radius: 0 0 12px 12px;
        pointer-events: none;
    }
    .news-list li {
        padding: 20px 0;
        border-bottom: 1px solid var(--color-text-light);
        border-radius: 12px;
        margin: 0 -6px;
        padding-left: 12px;
        padding-right: 12px;
        transition: background-color 0.3s ease;
    }
    .news-list li:first-child { padding-top: 0; }
    .news-list li:last-child { border-bottom: none; }
    .news-list li:hover {
        background-color: rgba(255, 255, 255, 0.12);
    }
    .news-list a {
        color: var(--color-text-light);
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 20px;
        line-height: 28px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-decoration: none;
        transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
            color 0.3s ease,
            text-shadow 0.3s ease;
    }
    .news-list a:hover {
        transform: translateX(6px);
        color: #fffef8;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    }
    .news-list a:focus-visible {
        transform: translateX(6px);
        color: #fffef8;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
        outline: 2px solid rgba(255, 255, 255, 0.9);
        outline-offset: 4px;
    }
    .news-list a span {
        font-family: var(--font-main);
        font-weight: 400;
        font-size: 13px;
        line-height: 19.5px;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .news-list a:hover span,
    .news-list a:focus-visible span {
        opacity: 0.95;
        transform: translateX(2px);
    }
    @media (max-width: 1200px) {
        .news-container { flex-direction: column; }
        .news-sidebar { max-width: 100%; }
    }
    @media (max-width: 768px) {
        .news-grid { grid-template-columns: 1fr; }
        .news-list-wrapper {
            height: 700px;
        }
    }

/* CSS for section section:Leaders */
.leaders-section {
        background-color: var(--tertiary-bg);
        background-image: url('images/2bb49db5963b27a65161a401111eac540a7b2292.png');
        background-size: 286px;
        padding: 60px 0;
    }
    .leaders-header {
        margin-bottom: 70px;
        text-align: left;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        transform: translateX(-40px);
    }
    .leaders-header h2 {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 42px;
        margin-bottom: 16px;
    }
    .leaders-header p, .leaders-header a {
        font-family: var(--font-main);
        font-weight: 500;
        font-size: 20px;
        line-height: 28px;
    }
    .leaders-header a {
        text-decoration: underline;
    }
    .leaders-grid {
        display: flex;
        justify-content: center;
        gap: 80px;
        flex-wrap: wrap;
    }
    .leader-card {
        width: 380px;
        transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
    }
    .leader-card {
        width: 380px;
        transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
    }
    /* На мобильных скрываем карточки после 3-й */
    .leader-card-hidden-mobile {
        display: none !important;
    }
    /* На десктопе скрываем карточки после 6-й */
    @media (min-width: 768px) {
        .leader-card-hidden-mobile {
            display: block !important;
        }
        .leader-card-hidden-desktop {
            display: none !important;
        }
    }
    /* При разворачивании показываем все скрытые карточки */
    .leaders-grid.expanded .leader-card-hidden-mobile,
    .leaders-grid.expanded .leader-card-hidden-desktop {
        display: block !important;
        animation: fadeInUp 0.4s ease forwards;
    }
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .leaders-more-container {
        text-align: center;
        margin-top: 40px;
    }
    .leaders-view-more-btn {
        background: var(--color-accent-green-dark);
        color: white;
        border: none;
        padding: 16px 40px;
        font-size: 20px;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: all 0.3s ease;
        font-family: var(--font-main);
        text-align: center;
    }
    .leaders-view-more-btn:hover {
        background: var(--color-accent-green);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .leaders-view-more-btn i {
        transition: transform 0.3s ease;
    }
    .leaders-view-more-btn.expanded i {
        transform: rotate(180deg);
    }
    .leader-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 12px;
        border: 2px solid var(--color-text-light);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        margin-bottom: 16px;
    }
    .leader-card-placeholder {
        width: 100%;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f0f0f0;
        border-radius: 12px;
        border: 2px solid var(--color-text-light);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        margin-bottom: 16px;
        color: #999;
    }
    .leader-card-placeholder svg {
        opacity: 0.5;
    }
    .leader-card h3 {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    .leader-card .leader-divider {
        display: none !important;
    }
    /* Убеждаемся, что все разделители одинаковые, включая первый */
    .leader-card:first-child .leader-divider,
    .leaders-grid > .leader-card:first-of-type .leader-divider,
    .leader-card:nth-child(1) .leader-divider {
        height: 1px !important;
        min-height: 1px !important;
        max-height: 1px !important;
    }
    .leader-card .leader-position {
        font-family: var(--font-main);
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        margin-top: -8px;
        margin-bottom: 20px;
        color: #444;
    }
    .leader-card p {
        font-family: var(--font-main);
        font-weight: 500;
        font-size: 20px;
        line-height: 30px;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }
    .leader-card .leader-card-bottom-divider {
        width: 40px;
        height: 1px;
        background-color: var(--color-text-gray);
        margin: 0 auto;
        margin-top: auto;
    }
    .leader-card {
        display: flex;
        flex-direction: column;
    }
    @media (max-width: 1400px) {
        .leaders-grid {
            justify-content: center;
        }
    }
    @media (max-width: 768px) {
        .leaders-header {
            text-align: center !important;
            transform: none !important;
        }
        .leaders-view-more-btn {
            padding: 12px 24px;
            font-size: 16px;
            width: auto;
            min-width: 150px;
            max-width: 90%;
        }
    }

/* CSS for section section:CoordinationCouncil */
    .coordination-council-section {
        background-color: #F5F0E0;
        padding: 60px 0;
    }
    .coordination-council-header {
        margin-bottom: 50px;
        text-align: center;
    }
    .coordination-council-header h2 {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 42px;
        margin-bottom: 0;
        color: #000;
    }
    .coordination-council-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .coordination-card {
        background: #F5F0E0;
        border-radius: 0;
        overflow: visible;
        box-shadow: none;
        transition: none;
        display: flex;
        flex-direction: row;
        gap: 30px;
        padding: 0;
        align-items: flex-start;
    }
    .coordination-card:hover {
        transform: none;
        box-shadow: none;
    }
    .coordination-card img {
        width: 150px;
        height: 180px;
        object-fit: cover;
        border-radius: 30px;
        border: 1px solid #e0e0e0;
        flex-shrink: 0;
        margin: 0;
    }
    .coordination-card-placeholder {
        width: 150px;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f5f5f5;
        color: #999;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        flex-shrink: 0;
        margin: 0;
    }
    .coordination-card-placeholder svg {
        opacity: 0.5;
    }
    .coordination-card-content {
        flex: 1;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    .coordination-card h3 {
        font-family: var(--font-heading);
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 8px 0;
        color: #000;
        line-height: 1.3;
        padding-bottom: 8px;
        border-bottom: 1px solid #d0d0d0;
    }
    .coordination-card h3 br {
        display: block;
    }
    .coordination-card .coordination-surname {
        font-size: 24px;
        font-weight: 700;
    }
    .coordination-card .coordination-name {
        font-size: 18px;
        font-weight: 700;
    }
    .coordination-card .coordination-position {
        font-family: var(--font-main);
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        margin-top: -8px;
        margin-bottom: 12px;
        color: #666;
    }
    .coordination-card .coordination-description {
        margin: 0;
        font-size: 16px;
        line-height: 1.6;
        color: #000;
    }
    /* На мобильных скрываем карточки после 3-й */
    .coordination-card-hidden-mobile {
        display: none !important;
    }
    /* На десктопе скрываем карточки после 6-й */
    .coordination-card-hidden-desktop {
        display: flex !important;
    }
    /* При разворачивании показываем все скрытые карточки */
    .coordination-council-grid.expanded .coordination-card-hidden-mobile,
    .coordination-council-grid.expanded .coordination-card-hidden-desktop {
        display: flex !important;
        animation: fadeInUp 0.4s ease forwards;
    }
    /* На десктопе показываем карточки с классом hidden-mobile, но скрываем hidden-desktop */
    @media (min-width: 768px) {
        .coordination-card-hidden-mobile {
            display: flex !important;
        }
        .coordination-card-hidden-desktop {
            display: none !important;
        }
        .coordination-council-grid.expanded .coordination-card-hidden-desktop {
            display: flex !important;
            animation: fadeInUp 0.4s ease forwards;
        }
    }
    /* Кнопка "Просмотр" для координационного совета */
    .coordination-view-more-btn {
        background: var(--color-accent-green-dark);
        color: white;
        border: none;
        padding: 16px 40px;
        font-size: 20px;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: all 0.3s ease;
        font-family: var(--font-main);
        text-align: center;
    }
    .coordination-view-more-btn:hover {
        background: var(--color-accent-green);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .coordination-view-more-btn i {
        transition: transform 0.3s ease;
    }
    .coordination-view-more-btn.expanded i {
        transform: rotate(180deg);
    }
    .coordination-more-container {
        margin-top: 40px;
    }
    @media (max-width: 768px) {
        .coordination-council-grid {
            grid-template-columns: 1fr;
        }
        .coordination-card {
            flex-direction: row;
            gap: 20px;
        }
        .coordination-card img,
        .coordination-card-placeholder {
            width: 150px;
            height: 180px;
        }
        .coordination-council-header {
            text-align: center;
        }
        /* На мобильных обязательно скрываем карточки после 3-й */
        .coordination-card-hidden-mobile {
            display: none !important;
        }
        .coordination-council-grid.expanded .coordination-card-hidden-mobile {
            display: flex !important;
            animation: fadeInUp 0.4s ease forwards;
        }
    }

/* CSS for section section:ContactForm */
.contact-form-section {
        background-color: #EEE5CC;
        padding: 60px 0;
    }
    .contact-form-section h2 {
        font-family: var(--font-heading);
        font-size: 42px;
        margin-bottom: 12px;
    }
    .form-subtitle {
        font-size: 20px;
        color: #3d3d3d;
        margin-bottom: 60px;
        max-width: 850px;
    }
    .form-stepper {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 16px;
        margin-bottom: 60px;
    }
    .step { display: flex; align-items: center; gap: 16px; }
    .step-number {
        width: 50px; height: 50px;
        border-radius: 30px;
        background-color: rgba(246, 248, 250, 0.75);
        border: 1px solid #fff;
        box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.35);
        display: grid;
        place-items: center;
        font-size: 20px;
        color: #3d3d3d;
    }
    .step-label { font-size: 13px; color: #3d3d3d; }
    .step-arrow { width: 51px; }
    .contact-form {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px 36px;
    }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-group-span-2 { grid-column: span 2; }
    .form-group-tall { grid-row: span 3; }
    .form-group label { font-size: 13px; color: var(--color-text-gray); }
    .contact-form input, .contact-form textarea, .custom-select {
        background-color: #fff;
        border: 1px solid #cfcfcf;
        border-radius: 30px;
        box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.35);
        padding: 20px;
        font-family: var(--font-main);
        font-size: 13px;
        width: 100%;
    }
    .contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--color-text-muted); }
    .contact-form textarea { resize: vertical; min-height: 120px; }
    .form-group-tall textarea { min-height: 250px; }
    .custom-select { position: relative; }
    .custom-select select { appearance: none; -webkit-appearance: none; background: transparent; border: none; padding: 0; margin: 0; width: 100%; height: 100%; cursor: pointer; }
    .custom-select::after {
        content: '';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 9px;
        background-image: url('images/1_1143.svg');
        background-repeat: no-repeat;
        background-position: center;
        pointer-events: none;
    }
    .date-range { display: flex; align-items: center; gap: 12px; }
    .date-range input { flex: 1; }
    /* Обёртка не должна ломать сетку: дочерние .form-group остаются «прямыми» детьми grid формы */
    #contact-form-mode-standard { display: contents; }
    .contact-form-mode-missing { display: none; }
    .contact-form.contact-form--missing .contact-form-mode-missing { display: contents; }
    .contact-form.contact-form--missing #contact-form-mode-standard { display: none; }
    .contact-form.contact-form--missing #contact-form-files-wrap { display: none; }
    .form-group-bottom {
        grid-column: 1 / 5;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .checkbox-group { 
        display: flex; 
        gap: 12px; 
        align-items: center;
        width: 100%;
    }
    .checkbox-group input[type="checkbox"] {
        width: auto;
        min-width: 20px;
        height: 20px;
        flex-shrink: 0;
        box-shadow: none !important;
        background-color: transparent !important;
    }
    .checkbox-group label { 
        font-size: 14px; 
        line-height: 1.2; 
        color: var(--color-text-dark);
        flex: 1;
    }
    .checkbox-group a { color: #0075bc; }
    .form-bottom-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }
    .file-upload { 
        flex: 1;
        text-align: center;
    }
    .file-upload a { font-size: 16px; color: #0075bc; }
    .file-upload span { display: inline-block; width: 12px; height: 12px; border: 1px solid #cfcfcf; border-radius: 50%; text-align: center; font-size: 10px; line-height: 12px; color: #0075bc; margin-left: 8px; }
    .file-upload small { display: block; font-size: 13px; color: var(--color-text-dark); margin-top: 8px; }
    .submit-btn {
        background-color: var(--color-accent-green-dark);
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 22px 40px;
        font-size: 24px;
        font-weight: 700;
        cursor: pointer;
        text-align: center;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    @media (max-width: 1200px) {
        .contact-form { grid-template-columns: repeat(2, 1fr); }
        .form-group-bottom { grid-column: 1 / 3; }
    }
    @media (max-width: 768px) {
        .contact-form { grid-template-columns: 1fr; }
        .form-group-span-2, .form-group-bottom { grid-column: 1 / 2; }
        .form-stepper { display: none !important; }
        .step-arrow { display: none; }
        .form-bottom-actions {
            flex-direction: column;
            gap: 20px;
        }
        .submit-btn {
            width: auto;
            min-width: 200px;
            max-width: 90%;
            padding: 16px 24px;
            font-size: 18px;
            margin: 0 auto;
            display: block;
        }
    }

/* CSS for section section:Faq */
.faq-section {
        background-color: var(--tertiary-bg);
        background-image: url('images/2bb49db5963b27a65161a401111eac540a7b2292.png');
        padding: 60px 0 120px;
    }
    .faq-section h2 {
        font-family: var(--font-heading);
        font-size: 42px;
        margin-bottom: 16px;
    }
    .breadcrumbs {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .breadcrumbs a { color: #555; }
    .breadcrumbs span { color: #555; }
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .faq-item {
        background: linear-gradient(180deg, #cccccc 0%, #faf6f2 100%);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        border: 1px solid #e3e6e8;
        border-radius: 50px;
        overflow: hidden;
    }
    .faq-item summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 24px;
        cursor: pointer;
        font-size: 24px;
        font-weight: 500;
        list-style: none;
        border-radius: 50px;
    }
    .faq-item[open] summary {
        border-radius: 50px 50px 0 0;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-toggle-icon {
        width: 18px;
        height: 18px;
        transition: transform 0.3s;
    }
    .faq-item[open] summary .faq-toggle-icon {
        transform: rotate(180deg);
    }
    .faq-item p {
        padding: 0 24px 24px;
        font-family: var(--font-inter);
        font-size: 16px;
        line-height: 1.4;
    }
    /* Скрытие FAQ после 5-го на мобильных */
    .faq-item-hidden-mobile {
        display: none !important;
    }
    .faq-list.expanded .faq-item-hidden-mobile {
        display: block !important;
        animation: fadeInUp 0.4s ease forwards;
    }
    /* Кнопка "Все вопросы" */
    .faq-view-all-btn {
        background: var(--color-accent-green-dark);
        color: white;
        border: none;
        padding: 18px 44px;
        font-size: 22px;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: all 0.3s ease;
        font-family: var(--font-main);
        text-align: center;
    }
    .faq-view-all-btn:hover {
        background: var(--color-accent-green);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .faq-view-all-btn i {
        transition: transform 0.3s ease;
    }
    .faq-view-all-btn.expanded i {
        transform: rotate(180deg);
    }
    /* Контейнер для кнопки "Все вопросы" */
    .faq-more-container {
        margin-top: 60px;
    }
    /* На десктопе показываем все вопросы */
    @media (min-width: 768px) {
        .faq-item-hidden-mobile {
            display: block !important;
        }
        .faq-more-container {
            display: none !important;
        }
    }
    /* Стили кнопки на мобильных */
    @media (max-width: 767px) {
        .faq-more-container {
            margin-top: 110px;
        }
        .faq-view-all-btn {
            padding: 14px 28px;
            font-size: 18px;
            width: auto;
            min-width: 170px;
            max-width: 90%;
        }
    }

    .useful-links-section {
        background: #f0f0f0;
        padding: 56px 0 72px;
    }
    .useful-links-section h2 {
        font-family: var(--font-heading);
        font-size: 42px;
        font-weight: 700;
        text-align: center;
        margin: 0 0 40px;
        color: #0a4a7a;
    }
    .useful-links-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 28px;
        max-width: 1100px;
        margin: 0 auto;
    }
    .useful-link-card {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 20px 22px;
        background: #fff;
        border-radius: 60px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        text-decoration: none;
        color: inherit;
        border: 1px solid rgba(0, 0, 0, 0.06);
        transition: box-shadow 0.2s ease, transform 0.2s ease;
    }
    .useful-link-card:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }
    .useful-link-card__icon {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .useful-link-card__icon img {
        max-width: 56px;
        max-height: 56px;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    .useful-link-card__body {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .useful-link-card__title {
        font-family: var(--font-main);
        font-size: 18px;
        font-weight: 700;
        color: #0a4a7a;
        line-height: 1.25;
    }
    .useful-link-card__url {
        font-family: var(--font-inter);
        font-size: 14px;
        color: #0075bc;
    }
    .useful-link-card__ext {
        flex-shrink: 0;
        color: #6b7280;
        opacity: 0.85;
    }
    .useful-link-card:hover .useful-link-card__ext {
        color: #0a4a7a;
        opacity: 1;
    }
    @media (max-width: 992px) {
        .useful-links-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .useful-links-section h2 {
            font-size: 32px;
        }
    }
    @media (max-width: 576px) {
        .useful-links-grid {
            grid-template-columns: 1fr;
        }
        .useful-links-section {
            padding: 40px 0 56px;
        }
    }

/* CSS for section section:Footer */
.site-footer-main {
    background-color: #F6FBF7;
        padding-top: 60px;
    }
    .footer-container {
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        gap: 60px; 
        flex-wrap: nowrap;
    }
    .footer-logo-area {
        display: flex;
        align-items: center;
        gap: 30px;
        flex-shrink: 0;
    }
    .footer-logo-area a {
        display: inline-block;
        transition: opacity 0.3s ease;
        cursor: pointer;
    }
    .footer-logo-area a:hover {
        opacity: 0.8;
    }
    .footer-logo-area img {
        width: 200px;
        height: auto;
        display: block;
    }
    .footer-logo-divider {
        width: 1px;
        height: 120px;
        background-color: #000;
    }
    .footer-section-divider {
        width: 1px;
        background-color: rgba(0, 0, 0, 0.6);
        flex-shrink: 0;
        align-self: stretch;
        margin: 0 20px;
    }
    .footer-nav-wrapper {
        display: grid;
        grid-template-columns: repeat(3, minmax(160px, 1fr));
        column-gap: 80px;
        row-gap: 30px;
        flex: 1 1 0%;
    }
    .footer-nav-col {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .footer-nav-col h4 {
        font-family: var(--font-main);
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    .footer-nav-col h4 a {
        color: var(--color-text-dark);
    }
    .footer-nav-col ul {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 8px;
    }
    .footer-nav-col ul li a {
        font-family: var(--font-main);
        font-size: 15px;
        font-weight: 400;
        color: var(--color-text-dark);
        line-height: 1.5;
    }
    .footer-nav-col-single {
        gap: 12px;
        justify-content: flex-start;
    }
    .footer-nav-col-contacts {
        grid-column: 1 / 2;
    }
    .footer-nav-col-faq {
        grid-column: 2 / 3;
    }
    .footer-nav-col-silavedinstve {
        grid-column: 3 / 4;
    }
    .footer-nav-copy {
        grid-column: 1 / 4;
        font-size: 14px;
        color: #333;
        margin-top: 10px;
        text-align:center;
        margin-bottom: 30px;
    }
    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: left;
        flex: 0 0 350px;
        padding: 0;
        margin-left: auto;
    }
    .footer-logo-area,
    .footer-nav-wrapper,
    .footer-contact {
        align-self: flex-start;
    }
    .footer-contact h4 {
        font-family: var(--font-main);
        font-weight: 700;
        font-size: 28px;
        margin-bottom: 8px;
        color: var(--color-text-dark);
    }
    .footer-contact a {
        font-family: var(--font-main);
        font-weight: 400;
        font-size: 20px;
        line-height: 1.6;
        color: var(--color-text-dark);
        word-break: break-word;
    }
    .copyright-container {
        text-align: center;
        padding-top: 30px;
        font-size: 14px;
        color: #333;
    }
    @media (max-width: 1400px) {
        .footer-container {
            flex-wrap: wrap;
        }
        .footer-nav-wrapper {
            grid-template-columns: repeat(2, minmax(200px, 1fr));
            column-gap: 40px;
        }
        .footer-section-divider {
            display: none;
        }
        .footer-contact {
            width: 100%;
            margin-left: 0;
            margin-top: 20px;
        }
        .footer-nav-copy {
            grid-column: 1 / 3;
        }
        .footer-nav-col-silavedinstve {
            grid-column: 1 / 3;
        }
    }
    @media (max-width: 1200px) {
        .footer-container {
            flex-direction: column;
            gap: 40px;
        }
        .footer-logo-area {
            align-self: center;
        }
        .footer-nav-wrapper {
            grid-template-columns: 1fr;
            column-gap: 30px;
        }
        .footer-section-divider {
            display: none;
        }
        .footer-contact {
            width: 100%;
            max-width: 500px;
            align-self: center;
        }
        .footer-nav-col-contacts,
        .footer-nav-col-faq,
        .footer-nav-col-silavedinstve,
        .footer-nav-copy {
            grid-column: 1 / 2;
        }
    }
    @media (max-width: 768px) {
        .footer-logo-area {
            flex-direction: column;
            gap: 20px;
        }
        .footer-logo-divider {
            display: none;
        }
        .footer-nav-wrapper {
            grid-template-columns: 1fr;
            column-gap: 0;
            row-gap: 30px;
        }
        .footer-nav-col h4 {
            font-size: 24px;
        }
        .footer-nav-col ul li a {
            font-size: 14px;
        }
        .footer-contact {
            padding: 0;
        }
        .footer-contact h4 {
            font-size: 24px;
        }
        .footer-contact a {
            font-size: 16px;
        }
    }