        :root {
            --primary-color: #234a79;
            --primary-hover: #1f4d8c;
            --accent-color: #3976be;
            --light-bg: #f0f3fa;
            --text-dark: #334155;
            --text-muted: #64748b;
        }

        body {
            font-family: 'Manrope', 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: #ffffff;
            overflow-x: hidden;
        }

        /* Навигация */
        .navbar-custom {
            background-color: #ffffff;
            padding: 15px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        .navbar-brand img {
            max-width: 210px;
            height: auto;
        }
        .nav-link-custom {
            color: var(--text-dark) !important;
            font-weight: 700;
            margin-right: 15px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.2s;
        }
        .nav-link-custom:hover {
            color: var(--accent-color) !important;
        }

        /* Выпадающее меню "О нас" */
        .nav-item-dropdown {
            position: relative;
        }
        .simple-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0px 15px 35px rgba(0, 11, 48, 0.15);
            border: 1px solid rgba(0,0,0,0.06);
            padding: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease;
            z-index: 1001;
        }
        .simple-dropdown-item {
            display: block;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            padding: 10px 12px;
            border-radius: 10px;
            transition: background-color 0.2s, color 0.2s;
        }
        .simple-dropdown-item:hover {
            background-color: #f8fafc;
            color: var(--accent-color);
        }
        @media (min-width: 992px) {
            .nav-item-dropdown:hover .simple-dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        /* Мега-меню */
        @media (min-width: 992px) {
            .nav-item-mega {
                position: static !important;
            }
            .mega-menu {
                position: absolute;
                top: 100%;
                left: 50%;
                transform: translateX(-50%) translateY(15px);
                width: 100%;
                max-width: 1140px;
                background-color: #ffffff;
                border-radius: 16px;
                box-shadow: 0px 15px 35px rgba(0, 11, 48, 0.15);
                border: 1px solid rgba(0,0,0,0.05);
                padding: 30px;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
                z-index: 1000;
            }
            .nav-item-mega:hover .mega-menu {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0);
            }
        }

        .mega-menu-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            text-decoration: none;
            color: inherit;
            padding: 8px;
            border-radius: 8px;
            transition: background-color 0.2s, transform 0.2s;
        }
        .mega-menu-item:hover {
            background-color: #f8fafc;
            transform: translateY(-2px);
        }
        .mega-menu-icon {
            width: 48px;
            height: 48px;
            object-fit: contain;
            flex-shrink: 0;
        }
        .mega-menu-title {
            font-size: 14px;
            font-weight: 700;
            color: #1f4d8c;
            margin: 0 0 4px 0;
            line-height: 1.3;
        }
        .mega-menu-item:hover .mega-menu-title {
            color: #0260e8;
        }
        .mega-menu-desc {
            font-size: 11px;
            color: #64748b;
            margin: 0;
            line-height: 1.4;
        }

        @media (max-width: 991px) {
            .simple-dropdown-menu {
                position: static;
                min-width: 0;
                border-radius: 8px;
                box-shadow: none;
                border: 0;
                padding: 8px 0 0 0;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
            }
            .nav-item-dropdown.active-mobile .simple-dropdown-menu {
                display: block;
            }
            .mega-menu {
                background-color: #f8fafc;
                border-radius: 8px;
                padding: 15px;
                margin-top: 10px;
                display: none;
            }
            .nav-item-mega.active-mobile .mega-menu {
                display: block;
            }
            .mega-menu-item {
                margin-bottom: 12px;
            }
        }

        /* Hero / Заголовок блога */
        .blog-hero {
            background: radial-gradient(circle at center, rgba(57,118,190,1) 0%, rgba(35,74,121,1) 100%);
            color: #ffffff;
            padding: 90px 0;
            text-align: center;
        }
        .blog-hero h1 {
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .blog-hero p {
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Сетка блоговых статей */
        .blog-grid-section {
            padding: 90px 0;
            background-color: #f8fafc;
        }
        .blog-card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: none;
            display: flex;
            flex-direction: column;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 11, 48, 0.1);
        }
        .blog-card-img-wrapper {
            position: relative;
            padding-bottom: 60%;
            overflow: hidden;
            background-color: #efefef;
        }
        .blog-card-img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
        }
        .blog-card-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-grow: 1;
        }
        .blog-card-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 10px;
            font-weight: 500;
        }
        .blog-card-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary-hover);
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .blog-card-desc {
            font-size: 0.9rem;
            color: var(--text-dark);
            opacity: 0.85;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        /* Виджет обратной связи */
        .floating-widget {
            position: fixed;
            right: 25px;
            bottom: 25px;
            z-index: 1000;
        }
        .widget-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.25);
            transition: all 0.3s ease;
        }
        .widget-btn:hover {
            background-color: var(--accent-color);
            transform: scale(1.05);
        }
        .widget-menu {
            position: absolute;
            bottom: 75px;
            right: 0;
            display: none;
            flex-direction: column;
            gap: 10px;
        }
        .widget-menu.show {
            display: flex;
        }
        .widget-item {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
    
