        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
    .pricing-info {
        border: 2px solid rgba(255, 215, 0, 0.2);
        text-align: center;
        padding: 20px;
        margin-bottom: 20px; /* Добавляем отступ снизу */
    }

    .pricing-info ul {
        list-style: none;
        padding: 0;
        text-align: left;
        display: inline-block;
    }

    .pricing-info .tariff-button {
        display: block; /* Убираем inline-block и делаем кнопку блочной */
        margin-top: 15px;
        width: 100%; /* Занимает всю ширину контейнера */
    }

    .modal {
        display: none;
        position: fixed;
        z-index: 1001;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .modal-content {
        background-color: #1a1a1a;
        margin: 5% auto;
        padding: 20px;
        border: 1px solid #333;
        border-radius: 8px;
        width: 90%;
        max-width: 500px;
        position: relative;
        color: #fff;
    }
    .modal-header {
        margin-bottom: 20px;
        text-align: center;
    }
    .modal-title {
        font-size: 24px;
        font-weight: bold;
        color: yellow; /* Желтый заголовок */
    }
    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        position: absolute;
        right: 15px;
        top: 10px;
        cursor: pointer;
    }
    .close:hover,
    .close:focus {
        color: #fff;
    }
    label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #fff; /* Белый текст для меток */
    }
    input[type="text"],
    input[type="number"],
    select,
    textarea {
        width: 100%;
        padding: 8px;
        margin-bottom: 15px;
        border: 1px solid #444;
        border-radius: 4px;
        box-sizing: border-box;
        background-color: #2c2c2c;
        color: #fff;
    }
    input[readonly] {
        background-color: #2c2c2c; /* Темнее для readonly полей */
        color: #ccc;
    }
    .tariff-button {
        background: linear-gradient(135deg, #6e8efb, #a777e3);
        color: white;
        border: none;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
        border-radius: 4px;
        transition: background 0.3s ease;
        width: 100%;
    }
    .tariff-button:hover {
        background: linear-gradient(135deg, #5a7cf9, #9a67d1);
    }

    /* Модальное окно кастомизации */
    #customVpsModal {
        display: none;
        position: fixed;
        z-index: 1001;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }

    #customVpsModal .modal-content {
        background-color: #1a1a1a;
        margin: 5% auto;
        padding: 20px;
        border: 1px solid #333;
        border-radius: 8px;
        width: 90%;
        max-width: 500px;
        position: relative;
        color: #fff;
    }

    #customVpsModal .modal-header {
        margin-bottom: 20px;
        text-align: center;
    }

    #customVpsModal .modal-title {
        font-size: 24px;
        font-weight: bold;
    }

    #customVpsModal .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        position: absolute;
        right: 15px;
        top: 10px;
        cursor: pointer;
    }

    #customVpsModal .close:hover,
    #customVpsModal .close:focus {
        color: #fff;
    }

    #customVpsModal label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    #customVpsModal input[type="number"],
    #customVpsModal input[type="text"] {
        width: 100%;
        padding: 8px;
        margin-bottom: 15px;
        border: 1px solid #444;
        border-radius: 4px;
        box-sizing: border-box;
        background-color: #2c2c2c;
        color: #fff;
    }

    #customVpsModal .tariff-button {
        background: linear-gradient(135deg, #6e8efb, #a777e3);
        color: white;
        border: none;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
        border-radius: 4px;
        transition: background 0.3s ease;
        width: 100%;
    }

    #customVpsModal .tariff-button:hover {
        background: linear-gradient(135deg, #5a7cf9, #9a67d1);
    }

    #customVpsModal #formMessage {
        margin-top: 15px;
        text-align: center;
        font-weight: bold;
    }
        
        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            color: #fff;
            min-height: 100vh;
            padding-top: 86px;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Улучшенный Header */
        .header {
            width: 100%;
            height: 70px;
            background: linear-gradient(135deg, #232323 0%, #2a2a2a 100%);
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            margin-top: 16px;
            border-radius: 18px;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .header .container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            flex: 1;
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 48px;
            transition: transform 0.3s ease;
        }
        
        .logo img:hover {
            transform: scale(1.05);
        }
        
        .menu {
            flex: 2;
            display: flex;
            justify-content: center;
        }
        
        .menu ul {
            display: flex;
            gap: 0;
            list-style: none;
        }
        
        .menu ul li {
            margin: 0 10px;
        }
        
        .menu ul li a {
            text-decoration: none;
            color: #fff;
            font-size: 1.1rem;
            padding: 12px 20px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            transition: transform 0.22s cubic-bezier(.4,2,.6,1);
            z-index: 1;
            background: none;
            border: none;
            outline: none;
            font-weight: 600;
            letter-spacing: 0.5px;
            display: inline-block;
        }
        .menu ul li a:hover {
            transform: scale(1.18);
        }
        .menu ul li a::before,
        .menu ul li a::after {
            display: none !important;
        }
        
        .menu ul li a {
            background: none;
        }
        
        .menu-right {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 10px;
        }
        
        .menu-hosting-btn {
            color: #ffd700;
            font-weight: bold;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            background: linear-gradient(45deg, #232323, #2a2a2a);
            padding: 10px 20px;
            border-radius: 12px;
            border: 2px solid #ffd700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }
        
        .menu-hosting-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .menu-hosting-btn:hover::before {
            left: 100%;
        }
        
        .menu-hosting-btn:hover {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #232323;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
        }
        
        /* Центральная секция о компании */
        .about-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
            pointer-events: none;
            animation: backgroundShift 20s ease-in-out infinite;
        }
        
        @keyframes backgroundShift {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(-10px) translateY(-10px); }
            50% { transform: translateX(10px) translateY(10px); }
            75% { transform: translateX(-5px) translateY(5px); }
        }
        
        .about-content {
            position: relative;
            z-index: 1;
        }
        
        .about-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .about-header h2 {
            font-size: 3.5rem;
            color: #ffd700;
            margin-bottom: 20px;
            font-weight: bold;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
            animation: glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from { text-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
            to { text-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.3); }
        }
        
        .about-divider {
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #ffd700, transparent);
            margin: 0 auto;
            border-radius: 2px;
            animation: dividerGlow 3s ease-in-out infinite;
        }
        
        @keyframes dividerGlow {
            0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
            50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
        }
        
        .about-main {
            font-size: 1.4rem;
            color: #fff;
            text-align: center;
            line-height: 1.8;
            margin-bottom: 60px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .feature-item {
            background: linear-gradient(135deg, rgba(35, 35, 35, 0.9), rgba(45, 45, 45, 0.9));
            padding: 40px 30px;
            border-radius: 20px;
            border: 2px solid rgba(255, 215, 0, 0.2);
            transition: all 0.4s ease;
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
        }
        
        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .feature-item:hover::before {
            opacity: 1;
        }
        
        .feature-item:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(255, 215, 0, 0.6);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
        }
        
        .feature-icon {
            font-size: 4rem;
            display: block;
            margin-bottom: 25px;
            text-align: center;
            animation: iconFloat 3s ease-in-out infinite;
        }
        
        @keyframes iconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        .feature-content h4 {
            color: #ffd700;
            font-size: 1.6rem;
            margin-bottom: 20px;
            text-align: center;
            font-weight: bold;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .feature-content p {
            color: #e0e0e0;
            line-height: 1.7;
            text-align: center;
            font-size: 1.1rem;
        }
        
        .about-stats {
            display: flex;
            justify-content: center;
            gap: 80px;
            flex-wrap: wrap;
            margin-top: 60px;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px 25px;
            background: linear-gradient(135deg, rgba(35, 35, 35, 0.8), rgba(45, 45, 45, 0.8));
            border-radius: 15px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            min-width: 180px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 215, 0, 0.6);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        }
        
        .stat-number {
            display: block;
            font-size: 3rem;
            font-weight: bold;
            color: #ffd700;
            margin-bottom: 15px;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        
        .stat-label {
            color: #ccc;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
        }
        
        /* Модальные окна */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            backdrop-filter: blur(10px);
        }
        
        .modal-content {
            background: linear-gradient(135deg, #232323, #2a2a2a);
            margin: 5% auto;
            padding: 40px;
            border-radius: 25px;
            width: 90%;
            max-width: 650px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.7);
            animation: modalSlideIn 0.4s ease-out;
            border: 2px solid rgba(255, 215, 0, 0.2);
        }
        
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-100px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .close {
            color: #aaa;
            float: right;
            font-size: 32px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            right: 25px;
            top: 20px;
            transition: all 0.3s ease;
        }
        
        .close:hover {
            color: #ffd700;
            transform: scale(1.2);
        }
        
        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 2px solid #444;
        }
        
        .modal-title {
            font-size: 2.2rem;
            font-weight: bold;
            color: #ffd700;
            text-align: center;
            flex: 1;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        
        .modal-logos {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .logo-left, .logo-right {
            width: 90px;
            height: 90px;
            border-radius: 15px;
            background: linear-gradient(135deg, #333, #444);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 2px solid rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .logo-left:hover, .logo-right:hover {
            transform: scale(1.05);
            border-color: rgba(255, 215, 0, 0.6);
        }
        
        .logo-left img, .logo-right img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .modal-instruction {
            background: linear-gradient(135deg, #2a2a2a, #333);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            border-left: 5px solid #ffd700;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .modal-instruction h3 {
            color: #ffd700;
            margin-bottom: 15px;
            font-size: 1.4rem;
            font-weight: bold;
        }
        
        .modal-instruction p {
            color: #e0e0e0;
            line-height: 1.7;
            font-size: 1.1rem;
        }
        
        .modal-button {
            background: linear-gradient(45deg, #4CAF50, #45a049);
            color: white;
            padding: 18px 35px;
            border: none;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
            text-decoration: none;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .modal-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .modal-button:hover::before {
            left: 100%;
        }
        
        .modal-button:hover {
            background: linear-gradient(45deg, #45a049, #4CAF50);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #fff;
            padding: 60px 0 30px;
            margin-top: 0;
            border-top: 2px solid rgba(255, 215, 0, 0.1);
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #ffd700, transparent);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            color: #ffd700;
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: bold;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        
        .footer-section h4 {
            color: #ffd700;
            font-size: 1.3rem;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .footer-section p {
            color: #e0e0e0;
            line-height: 1.7;
            font-size: 1.1rem;
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-section ul li {
            color: #e0e0e0;
            margin-bottom: 12px;
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li:hover {
            color: #ffd700;
        }
        
        .social-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .discord-btn, .vk-btn {
            padding: 15px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .discord-btn {
            background: linear-gradient(45deg, #7289da, #5865f2);
            color: white;
            box-shadow: 0 5px 20px rgba(114, 137, 218, 0.4);
        }
        
        .discord-btn:hover {
            background: linear-gradient(45deg, #5865f2, #7289da);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(114, 137, 218, 0.6);
        }

        .vk-btn {
            background: linear-gradient(45deg, #4a76a8, #557a95);
            color: white;
            box-shadow: 0 5px 20px rgba(74, 118, 168, 0.4);
        }

        .vk-btn:hover {
            background: linear-gradient(45deg, #557a95, #4a76a8);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(74, 118, 168, 0.6);
        }
        
        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 25px;
            text-align: center;
        }
        
        .footer-bottom p {
            color: #999;
            font-size: 1rem;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .about-features {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 900px) {
            .about-header h2 {
                font-size: 2.5rem;
            }
            
            .about-features {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 30px;
            }
            
            .about-stats {
                gap: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                height: auto;
                padding: 15px 0;
            }
            
            .logo, .menu, .menu-right {
                flex: unset;
                width: 100%;
                justify-content: center;
                margin-bottom: 10px;
            }
            
            .menu ul {
                justify-content: center;
                gap: 20px;
            }
            
            .about-header h2 {
                font-size: 2rem;
            }
            
            .about-main {
                font-size: 1.2rem;
            }
            
            .about-features {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .about-stats {
                gap: 30px;
            }
            
            .stat-item {
                min-width: 140px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer {
                padding: 50px 0 25px;
            }
            
            .footer-section h3 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 600px) {
            .header {
                padding: 10px 0;
            }
            
            .logo img {
                height: 40px;
            }
            
            .menu ul {
                flex-direction: column;
                gap: 10px;
            }
            
            .menu-hosting-btn {
                font-size: 1rem;
                padding: 8px 15px;
            }
            
            .about-header h2 {
                font-size: 1.8rem;
            }
            
            .about-main {
                font-size: 1.1rem;
            }
            
            .feature-item {
                padding: 30px 20px;
            }
            
            .modal-content {
                margin: 10% auto;
                padding: 25px;
            }
            
            .modal-title {
                font-size: 1.8rem;
            }
            
            .logo-left, .logo-right {
                width: 70px;
                height: 70px;
            }
        }
        
        @media (max-width: 480px) {
            .about-header h2 {
                font-size: 1.5rem;
            }
            
            .about-main {
                font-size: 1rem;
            }
            
            .feature-icon {
                font-size: 3rem;
            }
            
            .feature-content h4 {
                font-size: 1.4rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        .footer-modal-btn {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #232323;
            border: none;
            border-radius: 16px;
            padding: 14px 0;
            font-size: 1.08rem;
            font-weight: bold;
            cursor: pointer;
            margin-bottom: 14px;
            width: 100%;
            max-width: 320px;
            display: block;
            transition: all 0.3s cubic-bezier(.4,2,.6,1);
            box-shadow: 0 2px 8px rgba(255,215,0,0.10);
            letter-spacing: 0.5px;
            outline: none;
        }
        .footer-modal-btn:hover, .footer-modal-btn:focus {
            background: linear-gradient(45deg, #ffed4e, #ffd700);
            color: #181818;
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 6px 20px rgba(255,215,0,0.18);
        }
        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-section ul li {
            margin-bottom: 10px;
            display: flex;
            justify-content: flex-start;
        }
        .footer-section ul li:last-child {
            margin-bottom: 0;
        }
        /* Модальное окно: отступ между кнопками */
        #footerHostingModal .modal-button {
            margin-bottom: 18px;
        }
        #footerHostingModal .modal-button:last-child {
            margin-bottom: 0;
        }
            /* VPS Pricing Section */
    .vps-pricing-section {
        padding: 30px 0;
        overflow: hidden;
    }
    .vps-pricing-section::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 10% 90%, rgba(255, 215, 0, 0.07) 0%, transparent 40%),
            radial-gradient(circle at 90% 10%, rgba(255, 215, 0, 0.07) 0%, transparent 40%);
        pointer-events: none;
    }
    .vps-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 1;
    }
    .vps-header h2 {
        font-size: 2.8rem;
        color: #ffd700;
        margin-bottom: 20px;
        font-weight: bold;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    .vps-subheader {
        font-size: 1.3rem;
        color: #e0e0e0;
        max-width: 700px;
        margin: 20px auto 0;
        line-height: 1.6;
    }
    .vps-divider {
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #ffd700, transparent);
        margin: 10px auto;
        border-radius: 2px;
    }
    .pricing-info {
        text-align: center;
        margin-bottom: -30px;
        background: rgba(35, 35, 35, 0.6);
        padding: 25px;
        border-radius: 15px;
        border: 1px solid rgba(255, 215, 0, 0.2);
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-info h3 {
        color: #ffd700;
        margin-bottom: 15px;
        font-size: 1.5rem;
    }
    .pricing-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    .pricing-info li {
        color: #ccc;
        font-size: 1.1rem;
    }
    .vps-tariffs {
        display: flex;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        flex-wrap: wrap; /* Чтобы элементы переносились на новую строку, если не помещаются */
        justify-content: space-evenly; /* Распределяет элементы равномерно */
        gap: 30px;
        position: relative;
        z-index: 1;
    }
    .tariff-item {
        background: linear-gradient(135deg, rgba(35, 35, 35, 0.9), rgba(45, 45, 45, 0.9));
        width: calc(30.33% - 10px); /* Три элемента в ряд, минус отступы */
        margin-bottom: 20px;
        border: 1px solid #ddd;
        padding: 15px;
        box-sizing: border-box; /* Важно для правильного расчета ширины */
        padding: 35px 25px;
        border-radius: 20px;
        border: 2px solid rgba(255, 215, 0, 0.2);
        transition: all 0.4s ease;
        backdrop-filter: blur(10px);
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    .tariff-item:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 215, 0, 0.6);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
    }
    .tariff-item h4 {
        color: #ffd700;
        font-size: 1.8rem;
        margin-bottom: 25px;
        font-weight: bold;
    }
    .tariff-item ul {
        list-style: none;
        padding: 0;
        margin: 0 0 auto;
    }
    .tariff-item li {
        color: #e0e0e0;
        padding: 8px 0;
        font-size: 1.1rem;
    }
    .tariff-item li strong {
        color: #fff;
        font-weight: 600;
    }
    .tariff-price {
        font-size: 2.2rem;
        font-weight: bold;
        color: #ffd700;
        margin: 25px 0;
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    }
    .tariff-price span {
        font-size: 1rem;
        color: #aaa;
        font-weight: normal;
    }
    .tariff-button {
        background: linear-gradient(45deg, #232323, #2a2a2a);
        color: #ffd700;
        border: 2px solid #ffd700;
        border-radius: 12px;
        padding: 14px 0;
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
        margin-top: auto;
    }
    .tariff-button:hover {
        background: linear-gradient(45deg, #ffd700, #ffed4e);
        color: #232323;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }

    /* Responsive VPS Section */
    @media (max-width: 900px) {
        .vps-header h2 {
            font-size: 2.3rem;
        }
        .vps-subheader {
            font-size: 1.1rem;
        }
        .pricing-info ul {
            gap: 15px;
        }
        .pricing-info li {
            font-size: 1rem;
        }
        .tariff-price {
            font-size: 2rem;
        }
    }
    @media (max-width: 768px) {
        .vps-pricing-section {
            padding: 60px 0;
        }
        .vps-header {
            margin-bottom: 40px;
        }
        .vps-header h2 {
            font-size: 2rem;
        }
        .pricing-info {
            padding: 20px 15px;
            width: 100%;
            box-sizing: border-box;
        }
        .pricing-info ul {
            flex-direction: column;
            gap: 5px;
        }
        .vps-tariffs {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .tariff-item {
            padding: 25px 20px;
        }
        .tariff-item h4 {
            font-size: 1.5rem;
        }
        .tariff-price {
            font-size: 1.8rem;
            margin: 20px 0;
        }
    }