body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f5f5f5;
        }
        
        .container {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
        }
        
        
        header {
            background: linear-gradient(to right, #4a1c6b, #1e3a8a);
            color: white;
            padding: 15px 0;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: Oxanium, sans-serif;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }
        
        nav li {
            margin-left: 20px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
        }
        
        
        .hero {
            background: linear-gradient(to right, #4a1c6b, #1e3a8a);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 36px;
            margin-bottom: 20px;
            font-family: Oxanium, sans-serif;
        }
        
        .hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
            font-family: Oxanium, sans-serif;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: white;
            color: #4a1c6b;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px;
            font-family: Oxanium, sans-serif;
        }

        .btn:hover{
            animation-name: button;
            background-color: #4a1c6b;
            color: white;
        }

        @keyframes button {
            50%{
                scale: 1.1;
            }

            100%{
                scale: 1.3;
            }
        }
        
        
        .vpn-info {
            background-color: white;
            padding: 60px 0;
        }
        
        .vpn-info h2 {
            text-align: center;
            color: #4a1c6b;
            margin-bottom: 40px;
            font-family: Oxanium, sans-serif;
        }
        
        .vpn-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .vpn-text {
            flex: 1;
            min-width: 300px;
            font-family: Oxanium, sans-serif;
        }

        .vpn-text li h3 p h2{
            font-family: Oxanium, sans-serif;
        }

        
        .vpn-image {
            flex: 1;
            min-width: 300px;
            background-color: #f0f0f0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .vpn-image p{
            font-family: Oxanium, sans-serif;
        }
        
        
        .features {
            padding: 60px 0;
            background-color: #f9f9f9;
        }
        
        .features h2 {
            text-align: center;
            color: #4a1c6b;
            margin-bottom: 40px;
            font-family: Oxanium, sans-serif;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            text-align: center;
            font-family: Oxanium, sans-serif;
        }

        
        .feature-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: #4a1c6b;
        }
        
       
        .pricing {
            padding: 60px 0;
            background-color: white;
        }
        
        .pricing h2 {
            text-align: center;
            color: #4a1c6b;
            margin-bottom: 40px;
            font-family: Oxanium, sans-serif;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .pricing-plan {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            border: 2px solid #e0e0e0;
            font-family: Oxanium, sans-serif;
        }

        
        .popular {
            border-color: #4a1c6b;
            transform: scale(1.05);
            font-family: Oxanium, sans-serif;
        }
        
        .plan-name {
            font-size: 22px;
            margin-bottom: 15px;
            color: #4a1c6b;
        }
        
        .price {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #1e3a8a;
        }
        
        .plan-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }
        
        .plan-features li {
            padding: 8px 0;
            border-bottom: 1px solid #e0e0e0;
        }
        
        
        .cta {
            padding: 60px 0;
            background: linear-gradient(to right, #4a1c6b, #1e3a8a);
            color: white;
            text-align: center;
            font-family: Oxanium, sans-serif;
        }
        
       
        footer {
            background-color: #1e1e1e;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-column h3 {
            color: #ddd;
            margin-bottom: 15px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #aaa;
        }
        
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
            }
            
            .vpn-content {
                flex-direction: column;
            }
            
            .pricing-plan.popular {
                transform: none;
            }
        }