
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        /* Navigation Styles */
        .navbar {
            padding: 15px 0;
            background-color: #1a2b5f !important;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            background-color: rgba(26, 43, 95, 0.95) !important;
            backdrop-filter: blur(10px);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: #fff !important;
        }
        

        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.8) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            margin: 0 0.2rem;
            position: relative;
        }
        
        .nav-link:hover,
        .nav-link:focus,
        .nav-link.active {
            color: #fff !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #f8c307;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .navbar-nav .btn {
            margin-left: 0.5rem;
            font-weight: 600;
            padding: 0.5rem 1.2rem !important;
        }
        
        .btn-login {
            border-color: rgba(255, 255, 255, 0.3);
            color: #fff;
        }
        
        .btn-login:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        
        .btn-register {
            background-color: #f8c307;
            color: #1a2b5f;
        }
        
        .btn-register:hover {
            background-color: #e0b000;
            color: #1a2b5f;
        }
        
        /* Mobile Menu Styles */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 1rem 0;
                background-color: #1a2b5f;
                margin-top: 10px;
                border-radius: 5px;
            }
            
            .navbar-nav {
                padding: 0 1rem;
            }
            
            .nav-item {
                margin: 0.3rem 0;
            }
            
            .nav-link {
                padding: 0.8rem 0 !important;
            }
            
            .navbar-nav .btn {
                margin: 0.5rem 0 0;
                width: 100%;
                display: block;
            }
        }



        
    .hero-section {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        color: white;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
        z-index: 1;
    }
    
    .hero-section .container {
        position: relative;
        z-index: 2;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .hero-section .lead {
        font-size: 1.25rem;
        opacity: 0.9;
    }
    
    @media (max-width: 992px) {
        .hero-section {
            padding: 80px 0;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 2.5rem;
        }
        
        .d-flex.flex-wrap {
            justify-content: center;
        }
    }
        
        .payment-methods {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 30px;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }
        
        .feature-card {
            transition: transform 0.3s;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .telegram-cta {
            background-color: #0088cc;
            color: white;
            border-radius: 50px;
            padding: 10px 20px;
            display: inline-flex;
            align-items: center;
            text-decoration: none;
        }
        
        .telegram-cta:hover {
            background-color: #0077b5;
            color: white;
        }
        
          /* Custom Styles for Packages Section */
    .package-card {
        transition: all 0.3s ease;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    }
    
    .package-icon {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(13, 110, 253, 0.1);
        border-radius: 50%;
    }
    
    .price-tag {
        position: relative;
        display: inline-block;
    }
    
    .price {
        font-size: 2rem;
        font-weight: 700;
        color: #1a2b5f;
        position: relative;
    }
    
    .price::before {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #f8c307, #1a2b5f);
        border-radius: 3px;
    }
    
    .popular-tag {
        transform: translateY(-50%);
    }
    
    .premium-tag {
        transform: translateY(-50%);
    }
    
    .badge.bg-warning {
        background-color: #f8c307 !important;
    }
    
    .badge.bg-gold {
        background: linear-gradient(135deg, #FFD700, #D4AF37);
        color: #000 !important;
    }
    
    .text-purple {
        color: #6f42c1;
    }
    
    .btn-purple {
        background-color: #6f42c1;
        color: white;
    }
    
    .btn-purple:hover {
        background-color: #5a32a3;
        color: white;
    }
    
    .text-blue {
        color: #0d6efd;
    }
    
    .btn-blue {
        background-color: #0d6efd;
        color: white;
    }
    
    .btn-blue:hover {
        background-color: #0b5ed7;
        color: white;
    }
    
    .hover-effect {
        transition: all 0.3s ease;
    }
    
    .hover-effect:hover {
        transform: translateY(-5px);
    }
    
    @media (max-width: 767.98px) {
        .price {
            font-size: 1.8rem;
        }
        
        .package-icon {
            width: 70px;
            height: 70px;
        }
    }
        /* Simple Footer Styles */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 20px 0;
            font-size: 14px;
        }
        
        footer a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            margin: 0 10px;
        }
        
        footer a:hover {
            color: var(--secondary-color);
        }
   