/* Общие стили - С префиксом gd- (gate-dimensions) */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ГЛАВНОЕ ИЗМЕНЕНИЕ: Крупный базовый размер для всех устройств */
        .gd-html {
            font-size: 25px; /* Увеличен базовый шрифт */
            -webkit-text-size-adjust: 100%;
        }

        .gd-body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            line-height: 1.5;
            color: #1d1d1f;(до 480px)
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            padding: 12px;
            min-height: 100vh;
        }

        /* Все классы с префиксом gd- */
        .gd-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .gd-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        /* Секции */
        .gd-section {
            margin-bottom: 35px;
            padding-bottom: 30px;
            border-bottom: 4px solid;
            border-image: linear-gradient(90deg, #e0e0e0 0%, #cccccc 50%, #e0e0e0 100%);
            border-image-slice: 1;
            position: relative;
        }

        .gd-section:last-child {
            border-bottom: none;
        }

        .gd-section::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0f6beb, #F939A9);
            border-radius: 4px;
        }

        .gd-title {
            font-size: 2.5rem; 
            margin-bottom: 25px;
            padding-bottom: 15px;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #1a1a1a, #333333);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .gd-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 5px;
            background: currentColor;
            border-radius: 5px;
            opacity: 0.5;
        }

        /* Индивидуальные цвета заголовков */
        .gd-title[style*="color: #0f6beb"] {
            background: linear-gradient(135deg, #0f6beb, #4a90e2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gd-title[style*="color: #F939A9"] {
            background: linear-gradient(135deg, #F939A9, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gd-section-content {
            font-size: 2.5rem; /* 30px */
            color: #2c3e50;
        }

        .gd-section-content p {
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 2.5rem; /* 30px */
        }

        .gd-section-content strong {
            font-weight: 800;
            font-size: 2.5rem; /* 34px */
            display: inline-block;
            margin-bottom: 15px;
            color: #0f6beb;
            background: rgba(15, 107, 235, 0.1);
            padding: 8px 25px 8px 20px;
            border-radius: 0 30px 30px 0;
            border-left: 8px solid #0f6beb;
        }

        /* Списки в "Назначении" */
        .gd-section-content p:first-of-type strong {
            margin-top: 0;
        }

        .gd-section-content p + p {
            padding-left: 30px;
            font-size: 2.5rem; /* 30px */
            border-left: 4px dashed;
            border-image: linear-gradient(180deg, #ccc, #999);
            border-image-slice: 1;
            margin-left: 20px;
            color: #34495e;
        }

        /* Ротатор размеров */
        .gd-rotator {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 25px;
        }

        .gd-item {
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
            color: #2c3e50;
            padding: 30px;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), inset 0 2px 4px rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: hidden;
        }

        .gd-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #428bca, #ffeb3b, #428bca);
            background-size: 200% 100%;
            animation: gd-gradientMove 3s linear infinite;
        }

        @keyframes gd-gradientMove {
            0% { background-position: 0% 0%; }
            100% { background-position: 200% 0%; }
        }

        .gd-item:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 25px 35px rgba(0, 0, 0, 0.15);
            border-color: #428bca;
        }

        .gd-label {
            margin: 0;
            font-size: 2.5rem; /* 36px */
            font-weight: 700;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            color: #1e3c5c;
        }

        .gd-value {
            font-weight: 900;
            color: #1e3c5c;
            background: linear-gradient(145deg, #ffeb3b, #ffd700);
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 2.5rem; /* 40px */
            min-width: 130px;
            text-align: center;
            box-shadow: 0 6px 0 #b8860b, 0 10px 20px rgba(0, 0, 0, 0.1);
            border: 3px solid white;
            transition: all 0.3s ease;
        }

        .gd-value:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 0 #b8860b, 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        /* Номер телефона */
        .gd-phone-link {
            text-decoration: none;
            display: inline-block;
            width: 100%;
        }

        .gd-phone {
            color: white;
            font-weight: 800;
            font-size: 1.8rem; /* 44px */
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px 40px;
            background: linear-gradient(145deg, #2e7d32, #1b5e20);
            border-radius: 80px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            margin: 20px 0;
            text-decoration: none;
            box-shadow: 0 15px 0 #0a3d0a, 0 20px 35px rgba(46, 125, 50, 0.4);
            text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .gd-phone::before {
            content: '📞';
            margin-right: 20px;
            font-size: 2.5rem; /* 50px */
            filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.2));
        }

        .gd-phone::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(30deg);
            transition: transform 0.6s;
        }

        .gd-phone:hover {
            transform: translateY(-7px);
            box-shadow: 0 20px 0 #0a3d0a, 0 25px 40px rgba(46, 125, 50, 0.5);
            background: linear-gradient(145deg, #3e9142, #2e7d32);
        }

        .gd-phone:hover::after {
            transform: rotate(30deg) translate(50%, 50%);
        }

        .gd-phone:active {
            transform: translateY(7px);
            box-shadow: 0 8px 0 #0a3d0a, 0 15px 30px rgba(46, 125, 50, 0.4);
        }

        /* Заголовок страницы */
        .gd-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 50px 30px;
            background: linear-gradient(145deg, #0f6beb, #1e4b8f);
            color: white;
            border-radius: 40px;
            box-shadow: 0 25px 0 #0a3a6b, 0 30px 50px rgba(15, 107, 235, 0.3);
            border: 3px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .gd-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            animation: gd-rotate 20s linear infinite;
        }

        @keyframes gd-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .gd-header h1 {
            font-size: 2.5rem; /* 70px */
            margin-bottom: 20px;
            font-weight: 900;
            line-height: 1.2;
            text-shadow: 5px 5px 0 #0a3a6b;
            position: relative;
            z-index: 1;
        }

        .gd-header p {
            font-size: 2rem; /* 40px */
            opacity: 0.95;
            font-weight: 500;
            text-shadow: 3px 3px 0 #0a3a6b;
            position: relative;
            z-index: 1;
        }

        /* Футер */
        .gd-footer {
            text-align: center;
            margin-top: 45px;
            padding: 30px 25px;
            border-top: 4px solid;
            border-image: linear-gradient(90deg, transparent, #ccc, transparent);
            border-image-slice: 1;
            color: #4a5568;
            font-size: 1.5rem; /* 30px */
            background: rgba(255, 255, 255, 0.5);
            border-radius: 30px;
            backdrop-filter: blur(5px);
        }

        .gd-footer p {
            margin-bottom: 10px;
            font-size: 1.5rem; /* 30px */
        }

        .gd-footer p:first-child {
            font-weight: 600;
            color: #2d3748;
            font-size: 1.7rem; /* 34px */
        }

        /* Индикатор */
        .gd-indicator {
            display: inline-block;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, #ffeb3b, #ffd700);
            border-radius: 50%;
            margin-left: 12px;
            animation: gd-pulse 1.5s infinite;
            border: 3px solid white;
            box-shadow: 0 0 25px #ffeb3b;
        }

        @keyframes gd-pulse {
            0% { opacity: 0.7; transform: scale(1); box-shadow: 0 0 25px #ffeb3b; }
            50% { opacity: 1; transform: scale(1.4); box-shadow: 0 0 40px #ffeb3b; }
            100% { opacity: 0.7; transform: scale(1); box-shadow: 0 0 25px #ffeb3b; }
        }












       
/* ===== МОБИЛЬНЫЕ УСТРОЙСТВА (до 480px) ===== */ 
        @media (max-width: 1080px) {
            .gd-html {
                font-size: 25px; /* Немного меньше на телефонах, но все еще крупно */
            }
            
            .gd-body {
                padding: 8px;
            }
            
            .gd-content {
                padding: 20px;
                border-radius: 20px;
            }
            
            .gd-section {
                margin-bottom: 25px;
                padding-bottom: 20px;
            }
            
            .gd-title {
                font-size: 2.5rem; /* 36px */
                margin-bottom: 18px;
            }
            
            .gd-section-content {
                font-size: 2.5rem; /* 25.2px */
            }
            
            .gd-section-content p {
                font-size: 2.5rem; /* 25.2px */
                margin-bottom: 15px;
            }
            
            .gd-section-content strong {
                font-size: 2.5rem; /* 27px */
                padding: 6px 18px 6px 15px;
                border-left-width: 6px;
            }
            
            .gd-section-content p + p {
                padding-left: 20px;
                font-size: 2.5rem; /* 25.2px */
                margin-left: 12px;
            }
            
            .gd-item {
                padding: 20px;
            }
            
            .gd-label {
                font-size: 3rem; /* 27px */
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            
            .gd-value {
                font-size: 2.5rem; /* 30.6px */
                padding: 8px 18px;
                min-width: 100px;
            }
            
            .gd-phone {
                font-size: 1.8rem; /* 32.4px */
                padding: 18px 25px;
            }
            
            .gd-phone::before {
                font-size: 2.5rem; /* 36px */
                margin-right: 12px;
            }
            
            .gd-header {
                padding: 30px 20px;
            }
            
            .gd-header h1 {
                font-size: 2.5rem; /* 45px */
                text-shadow: 4px 4px 0 #0a3a6b;
            }
            
            .gd-header p {
                font-size: 2.5rem; /* 27px */
            }
            
            .gd-footer {
                padding: 20px 15px;
                font-size: 2.5rem; /* 23.4px */
            }
            
            .gd-footer p {
                font-size: 2.5rem; /* 23.4px */
            }
            
            .gd-footer p:first-child {
                font-size: 2.5rem; /* 27px */
            }
        }



        /* ===== ДЕСКТОП (1025px и больше) ===== */
        @media (min-width: 1025px) {
            .gd-html {
                font-size: 20px;
            }
            
            .gd-rotator {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
            
            .gd-item {
                padding: 30px;
            }
            
            .gd-phone {
                max-width: 600px;
            }
        }

        /* Улучшения для touch-устройств */
        @media (hover: none) and (pointer: coarse) {
            .gd-item:hover,
            .gd-phone:hover,
            .gd-value:hover {
                transform: none;
            }
            
            .gd-item:active {
                transform: scale(0.98);
                background: linear-gradient(145deg, #f0f0f0, #e8e8e8);
            }
            
            .gd-phone:active {
                transform: translateY(7px);
                box-shadow: 0 8px 0 #0a3d0a;
            }
            
            .gd-value:active {
                transform: scale(0.98);
            }
        }

        /* Улучшение touch-областей */
        .gd-phone, .gd-item, .gd-value {
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
