
        .contacts-page {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Хедер страницы */
        .page-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .page-header h2 {
            font-size: 36px;
            color: #0b2b4f;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .page-header p {
            font-size: 18px;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
        }

        .header-decoration {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #1e4a7a);
            margin: 20px auto;
            border-radius: 2px;
        }

        /* Карточка руководства */
        .leadership-card {
            background: linear-gradient(135deg, #0b2b4f, #143b66);
            border-radius: 30px;
            padding: 40px;
            margin-bottom: 40px;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(11, 43, 79, 0.3);
        }

        .leadership-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .leadership-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .leadership-icon {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .leadership-info {
            flex: 1;
        }

        .leadership-label {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.8;
            margin-bottom: 10px;
        }

        .leadership-name {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .leadership-contact {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .leadership-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.15);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 18px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .leadership-phone:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .leadership-phone a {
            color: white;
            text-decoration: none;
        }

        /* Стили для карточки с сайтом министерства (как было) */
        .mosobl-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 24px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(37, 99, 235, 0.1);
            transition: all 0.3s ease;
        }

        .mosobl-card:hover {
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
            transform: translateY(-2px);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .mosobl-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
        }

        .mosobl-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2563eb, #1e4a7a);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
        }

        .mosobl-title {
            font-size: 24px;
            font-weight: 700;
            color: #0b2b4f;
            line-height: 1.3;
        }

        .mosobl-subtitle {
            font-size: 16px;
            color: #64748b;
            margin-top: 5px;
        }

        .mosobl-link {
            display: flex;
            align-items: center;
            gap: 20px;
            background: white;
            border-radius: 16px;
            padding: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .mosobl-link:hover {
            background: #f8fafc;
            border-color: #2563eb;
            transform: scale(1.02);
        }

        .mosobl-link-icon {
            width: 50px;
            height: 50px;
            background: #f1f5f9;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .mosobl-link:hover .mosobl-link-icon {
            background: #2563eb;
            color: white;
            transform: rotate(10deg);
        }

        .mosobl-link-content {
            flex: 1;
        }

        .mosobl-link-title {
            font-size: 18px;
            font-weight: 600;
            color: #0b2b4f;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .mosobl-link-badge {
            background: #2563eb;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .mosobl-link-description {
            font-size: 15px;
            color: #475569;
            line-height: 1.5;
        }

        .mosobl-link-arrow {
            width: 40px;
            height: 40px;
            background: #f1f5f9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .mosobl-link:hover .mosobl-link-arrow {
            background: #2563eb;
            color: white;
            transform: translateX(5px);
        }
        /* НОВЫЕ СТИЛИ ДЛЯ КОНТАКТОВ ИНСПЕКТОРОВ */
        
        /* Заголовок секции контактов */
        .contacts-section-title {
            font-size: 28px;
            font-weight: 700;
            color: #0b2b4f;
            margin: 40px 0 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #2563eb;
            display: inline-block;
        }

        /* Сетка контактов */
        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin: 30px 0;
        }

        /* Карточка контакта */
        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
            border-color: #2563eb;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #2563eb, #1e4a7a);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .contact-card:hover::before {
            opacity: 1;
        }

        /* Зона ответственности */
        .contact-area {
            font-size: 18px;
            font-weight: 700;
            color: #0b2b4f;
            margin-bottom: 15px;
            padding-bottom: 12px;
            border-bottom: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-area i {
            color: #2563eb;
            font-size: 20px;
        }

        /* Имя инспектора */
        .contact-name {
            font-size: 18px;
            font-weight: 600;
            color: #2563eb;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-name i {
            color: #94a3b8;
            font-size: 16px;
        }

        /* Детали контакта */
        .contact-details {
            margin-bottom: 20px;
        }

        .contact-detail-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            color: #475569;
            font-size: 15px;
            line-height: 1.5;
        }

        .contact-detail-item i {
            width: 20px;
            color: #2563eb;
            font-size: 16px;
            margin-top: 3px;
        }

        .contact-detail-item a {
            color: #475569;
            text-decoration: none;
            transition: color 0.3s ease;
            word-break: break-word;
        }

        .contact-detail-item a:hover {
            color: #2563eb;
        }

        /* Кнопки действий */
        .contact-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .contact-btn {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 15px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            background: white;
            color: #475569;
        }

        .contact-btn:hover {
            background: #2563eb;
            color: white;
            border-color: #2563eb;
            transform: translateY(-2px);
        }

        .contact-btn i {
            font-size: 14px;
        }

        /* Адаптивность */
        @media (max-width: 992px) {
            .contacts-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .page-header h2 {
                font-size: 30px;
            }
            
            .contacts-section-title {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .leadership-content {
                flex-direction: column;
                text-align: center;
            }
            
            .leadership-contact {
                justify-content: center;
            }
            
            .leadership-name {
                font-size: 24px;
            }
            
            .mosobl-header {
                flex-direction: column;
                text-align: center;
            }
            
            .mosobl-link {
                flex-direction: column;
                text-align: center;
            }
            
            .mosobl-link-arrow {
                display: none;
            }
            
            .contact-area {
                font-size: 16px;
            }
            
            .contact-name {
                font-size: 16px;
            }
            
            .contact-actions {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .leadership-card {
                padding: 25px;
            }
            
            .contact-card {
                padding: 20px;
            }
        }    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: #f8fafc;
        color: #1e293b;
        line-height: 1.5;
    }

	html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

	body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

	.main {
    flex: 1 0 auto;
    width: 100%;
	}

	.footer {
    flex-shrink: 0;
    width: 100%;
	}

    /* Хедер */
    .header {
        background: linear-gradient(135deg, #0b2b4f 0%, #143b66 100%);
        color: white;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .header-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo img {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: white;
        padding: 4px;
    }

    .logo-text {
        font-size: 18px;
        font-weight: 600;
        background: linear-gradient(135deg, #fff, #e0e7ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
	.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}


    /* Мобильное меню */
    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        transition: background 0.3s ease;
    }

    .mobile-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        backdrop-filter: blur(3px);
    }

    .menu-overlay.active {
        display: block;
    }

    /* Навигация */
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        padding: 8px 0;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
    }

    .nav-link i {
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .nav-link:hover {
        color: white;
    }

    /* Выпадающее меню регионов - ДЕСКТОП */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        min-width: 350px;
        max-height: 500px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        padding: 10px 0;
    }

    .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item {
        padding: 12px 20px;
        border-bottom: 1px solid #e2e8f0;
        transition: background 0.3s ease;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item a {
        color: #1e293b;
        text-decoration: none;
        font-size: 14px;
        display: block;
        transition: color 0.3s ease;
    }

    .dropdown-item:hover {
        background: #f1f5f9;
    }

    .dropdown-item:hover a {
        color: #2563eb;
    }

    /* Герой */
    .hero {
        background: linear-gradient(135deg, #0b2b4f 0%, #1e4a7a 100%);
        color: white;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQwMCIgaGVpZ2h0PSI0MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiIGlkPSJhIj48c3RvcCBzdG9wLWNvbG9yPSIjZmZmIiBzdG9wLW9wYWNpdHk9Ii4wNSIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNmZmYiIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIxMDAlIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHBhdGggZD0iTTAgMGwxNDAwIDQwMEgweiIgZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+');
        background-size: cover;
        opacity: 0.3;
    }

    .hero-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    .hero h1 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    /* Основной контент */
    .main {
        max-width: 1400px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .content-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 30px;
    }

    /* Карта */
    .map-container {
        background: white;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .map-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #0b2b4f;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .map-title i {
        color: #2563eb;
    }

    .rf-map {
        position: relative;
        width: 100%;
        -webkit-tap-highlight-color: transparent;
    }

    .rf-map svg {
        width: 100%;
        height: auto;
        display: block;
    }

    .rf-map path {
        fill: #e2e8f0;
        stroke: #94a3b8;
        stroke-width: 0.5;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .rf-map path:hover {
        fill: #2563eb;
        stroke: #1e4a7a;
        stroke-width: 1.5;
    }

    .rf-map path:active {
        fill: #1e4a7a;
    }

    /* Тултип для карты */
    .region-hover-tooltip {
        position: fixed;
        background: #1e293b;
        color: white;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        pointer-events: none;
        z-index: 10000;
        opacity: 0;
        transition: opacity 0.2s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        white-space: nowrap;
        max-width: 300px;
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
        border-left: 3px solid #2563eb;
    }

    .region-hover-tooltip::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: #1e293b transparent transparent transparent;
    }

    .region-hover-tooltip.active {
        opacity: 1;
    }

    .map-hint {
        display: none;
        text-align: center;
        margin-top: 15px;
        padding: 10px;
        background: #f1f5f9;
        border-radius: 10px;
        color: #475569;
        font-size: 14px;
    }

    .map-hint i {
        color: #2563eb;
        margin-right: 8px;
    }

    /* Информационный блок */
    .info-card {
        background: white;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .info-card h2 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #0b2b4f;
    }

    .info-text {
        color: #475569;
        margin-bottom: 15px;
        text-align: justify;
        font-size: 15px;
    }

    .info-text a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 500;
    }

    .info-text a:hover {
        text-decoration: underline;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 15px;
        border: none;
        cursor: pointer;
        width: 100%;
    }

    .btn-primary {
        background: #2563eb;
        color: white;
    }

    .btn-primary:hover {
        background: #1e4a7a;
        transform: translateY(-2px);
    }

    .btn-secondary {
        background: #f1f5f9;
        color: #1e293b;
    }

    .btn-secondary:hover {
        background: #e2e8f0;
    }

    /* Футер */
    .footer {
        background: linear-gradient(135deg, #0b2b4f 0%, #143b66 100%);
        color: white;
        padding: 30px 0;
        margin-top: 40px;
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-links {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 14px;
    }

    .footer-links a:hover {
        color: white;
    }

    .copyright {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
    }

    /* ========== МЕДИА-ЗАПРОСЫ ========== */
    @media (max-width: 992px) {
        .content-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

    /* ========== МОБИЛЬНАЯ ВЕРСИЯ ========== */
    @media (max-width: 768px) {
    	.main {
        padding-bottom: 20px;
    }
        .mobile-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-menu {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 70px);
            background: white;
            flex-direction: column;
            padding: 0;
            gap: 0;
            transition: left 0.3s ease;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            overflow-y: auto;
            display: flex;
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-item {
            width: 100%;
            margin: 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .nav-link {
            color: #1e293b;
            padding: 18px 20px;
            font-size: 16px;
            justify-content: space-between;
            width: 100%;
            background: white;
        }

        .nav-link i {
            width: 24px;
            color: #2563eb;
        }

        .nav-link .fa-chevron-down {
            transform: rotate(0deg);
            transition: transform 0.3s ease;
        }

        .nav-link.active .fa-chevron-down {
            transform: rotate(180deg);
        }

        /* Мобильное выпадающее меню - ИСПРАВЛЕНО */
        .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            max-height: 0;
            padding: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #f8fafc;
            border-radius: 0;
            min-width: auto;
            width: 100%;
            margin: 0;
            border: none;
        }

        .dropdown-menu.active {
            max-height: 400px;
            padding: 8px 0;
            overflow-y: auto;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .dropdown-item {
            padding: 14px 30px;
            border-bottom: 1px solid #e2e8f0;
            background: #f8fafc;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item a {
            font-size: 15px;
            color: #1e293b;
            display: block;
            width: 100%;
        }

        .dropdown-item:hover {
            background: #e2e8f0;
        }

        .dropdown-item:hover a {
            color: #2563eb;
        }

        /* Индикатор прокрутки */
        .dropdown-menu.active::after {
            content: '';
            position: sticky;
            bottom: 0;
            left: 0;
            right: 0;
            height: 30px;
            background: linear-gradient(to top, rgba(248, 250, 252, 0.95), transparent);
            pointer-events: none;
            display: block;
            margin-top: -30px;
        }

        .hero h1 {
            font-size: 22px;
        }

        .map-container {
            padding: 15px;
        }

        .rf-map {
            min-height: 300px;
        }

        .rf-map path {
            stroke-width: 1;
        }

        .map-hint {
            display: block;
        }

        .region-hover-tooltip {
            display: none;
        }

        .btn {
            padding: 16px;
            font-size: 16px;
        }

        .footer-container {
            flex-direction: column;
            text-align: center;
        }

        .footer-links {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .logo-text {
            font-size: 16px;
        }

        .hero h1 {
            font-size: 20px;
        }

        .map-title {
            font-size: 18px;
        }

        .footer-links {
            gap: 15px;
        }

        .footer-links a {
            font-size: 13px;
        }
        
        .dropdown-menu.active {
            max-height: 350px;
        }
        
        .dropdown-item {
            padding: 14px 20px;
        }
    }

        .mosobl-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 24px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(37, 99, 235, 0.1);
            transition: all 0.3s ease;
        }

        .mosobl-card:hover {
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
            transform: translateY(-2px);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .mosobl-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
        }

        .mosobl-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2563eb, #1e4a7a);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
        }

        .mosobl-title {
            font-size: 24px;
            font-weight: 700;
            color: #0b2b4f;
            line-height: 1.3;
        }

        .mosobl-subtitle {
            font-size: 16px;
            color: #64748b;
            margin-top: 5px;
        }

        .mosobl-link {
            display: flex;
            align-items: center;
            gap: 20px;
            background: white;
            border-radius: 16px;
            padding: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .mosobl-link:hover {
            background: #f8fafc;
            border-color: #2563eb;
            transform: scale(1.02);
        }

        .mosobl-link-icon {
            width: 50px;
            height: 50px;
            background: #f1f5f9;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .mosobl-link:hover .mosobl-link-icon {
            background: #2563eb;
            color: white;
            transform: rotate(10deg);
        }

        .mosobl-link-content {
            flex: 1;
        }

        .mosobl-link-title {
            font-size: 18px;
            font-weight: 600;
            color: #0b2b4f;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .mosobl-link-badge {
            background: #2563eb;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .mosobl-link-description {
            font-size: 15px;
            color: #475569;
            line-height: 1.5;
        }

        .mosobl-link-arrow {
            width: 40px;
            height: 40px;
            background: #f1f5f9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .mosobl-link:hover .mosobl-link-arrow {
            background: #2563eb;
            color: white;
            transform: translateX(5px);
        }

        /* Дополнительные контакты */
        .mosobl-contacts {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 25px;
        }

        .mosobl-contact-item {
            background: white;
            border-radius: 12px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .mosobl-contact-item:hover {
            border-color: #2563eb;
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
        }

        .mosobl-contact-icon {
            width: 40px;
            height: 40px;
            background: #f1f5f9;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 18px;
        }

        .mosobl-contact-info {
            flex: 1;
        }

        .mosobl-contact-label {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 3px;
        }

        .mosobl-contact-value {
            font-size: 14px;
            font-weight: 600;
            color: #0b2b4f;
        }

        .mosobl-contact-value a {
            color: #0b2b4f;
            text-decoration: none;
        }

        .mosobl-contact-value a:hover {
            color: #2563eb;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .mosobl-card {
                padding: 20px;
            }

            .mosobl-header {
                flex-direction: column;
                text-align: center;
            }

            .mosobl-title {
                font-size: 20px;
            }

            .mosobl-link {
                flex-direction: column;
                text-align: center;
                padding: 20px 15px;
            }

            .mosobl-link-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .mosobl-link-title {
                justify-content: center;
            }

            .mosobl-link-arrow {
                display: none;
            }

            .mosobl-contacts {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .mosobl-contact-item {
                padding: 12px;
            }
        }

        @media (max-width: 480px) {
            .mosobl-card {
                padding: 15px;
            }

            .mosobl-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .mosobl-title {
                font-size: 18px;
            }

            .mosobl-subtitle {
                font-size: 14px;
            }
        }
        .services-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .services-title {
            font-size: 32px;
            font-weight: 700;
            color: #0b2b4f;
            margin-bottom: 15px;
        }

        .services-subtitle {
            font-size: 18px;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin: 40px 0;
        }

        .service-card {
            background: white;
            border-radius: 24px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
            border-color: #2563eb;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #1e4a7a);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 28px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: #2563eb;
            color: white;
            transform: rotate(5deg) scale(1.05);
        }

        .service-title {
            flex: 1;
            font-size: 20px;
            font-weight: 700;
            color: #0b2b4f;
            line-height: 1.4;
        }

        .service-qr {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 20px 0;
            padding: 15px;
            background: #f8fafc;
            border-radius: 16px;
        }

        .service-qr img {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            background: white;
            padding: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-qr img {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
        }

        .service-qr-text {
            flex: 1;
            font-size: 14px;
            color: #475569;
            line-height: 1.5;
        }

        .service-qr-text i {
            color: #2563eb;
            margin-right: 5px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #2563eb;
            color: white;
            padding: 14px 24px;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            width: 100%;
            justify-content: center;
            margin-top: 15px;
            border: 1px solid #2563eb;
        }

        .service-link i {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            background: #1e4a7a;
            border-color: #1e4a7a;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* Бейдж "Популярная услуга" */
        .service-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #2563eb;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
        }

        /* Информационная карточка */
        .info-box {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border-radius: 24px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .info-box-icon {
            width: 80px;
            height: 80px;
            background: #2563eb;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 36px;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
        }

        .info-box-content {
            flex: 1;
        }

        .info-box-title {
            font-size: 20px;
            font-weight: 700;
            color: #0b2b4f;
            margin-bottom: 10px;
        }

        .info-box-text {
            color: #475569;
            line-height: 1.6;
        }

        .info-box-link {
            color: #2563eb;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .info-box-link:hover {
            text-decoration: underline;
        }

        /* Адаптивность */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .services-title {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .services-header {
                margin-bottom: 30px;
            }
            
            .services-title {
                font-size: 24px;
            }
            
            .services-subtitle {
                font-size: 16px;
            }
            
            .service-card {
                padding: 20px;
            }
            
            .service-header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .service-title {
                font-size: 18px;
                text-align: center;
            }
            
            .service-qr {
                flex-direction: column;
                text-align: center;
            }
            
            .service-badge {
                position: static;
                display: inline-block;
                margin-bottom: 10px;
            }
            
            .info-box {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
        }