        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #000000 0%, #ccc6c6 100%);
            color: #ffffff;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: #ccc6c6;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #99ff00;
            box-shadow: 0 2px 20px rgba(153, 255, 0, 0.3);
        }

        .logo {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-text {
            font-size: 48px;
            font-weight: bold;
            color: #99ff00;
            text-shadow: 0 0 20px rgba(153, 255, 0, 0.5);
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 20px 40px;
         /*   background: linear-gradient(180deg, rgba(153, 255, 0, 0.1) 0%, transparent 100%); */
		 background: black;
        }

        .hero h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #99ff00;
            text-shadow: 0 0 30px rgba(153, 255, 0, 0.4);
        }

        .hero p {
            font-size: 1.3em;
            margin-bottom: 15px;
            color: #e0e0e0;
        }

        .hero .highlight {
            color: #99ff00;
            font-weight: bold;
            font-size: 1.5em;
        }

        /* About Section */
        .about {
            background: rgba(255, 255, 255, 0.05);
            padding: 50px 20px;
            margin: 40px 0;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(153, 255, 0, 0.2);
        }

        .about h2 {
            color: #99ff00;
            font-size: 2em;
            margin-bottom: 25px;
            text-align: center;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .feature-card {
            background: rgba(0, 0, 0, 0.4);
            padding: 25px;
            border-radius: 12px;
            border: 2px solid rgba(153, 255, 0, 0.3);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: #99ff00;
            box-shadow: 0 5px 25px rgba(153, 255, 0, 0.3);
        }

        .feature-card h3 {
            color: #99ff00;
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        /* Packages Section */
        .packages {
            padding: 50px 20px;
        }

        .packages h2 {
            color: #99ff00;
            font-size: 2.2em;
            margin-bottom: 15px;
            text-align: center;
        }

        .packages-subtitle {
            text-align: center;
            color: #e0e0e0;
            margin-bottom: 40px;
            font-size: 1.1em;
        }

        .mac-display {
            background: rgba(153, 255, 0, 0.1);
            border: 2px solid #99ff00;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.1em;
        }

        .mac-display b {
            color: #99ff00;
            font-family: monospace;
            font-size: 1.2em;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .service-card {
            background: linear-gradient(145deg, rgba(153, 255, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
            border: 2px solid rgba(153, 255, 0, 0.3);
            border-radius: 15px;
            padding: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(153, 255, 0, 0.2) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: #99ff00;
            box-shadow: 0 10px 35px rgba(153, 255, 0, 0.4);
        }

        .service-card.selected {
            border-color: #99ff00;
            background: linear-gradient(145deg, rgba(153, 255, 0, 0.25) 0%, rgba(0, 0, 0, 0.4) 100%);
            box-shadow: 0 0 30px rgba(153, 255, 0, 0.5);
        }

        .service-card .check-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #99ff00;
            color: #000;
            display: none;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
        }

        .service-card.selected .check-icon {
            display: flex;
        }

        .service-name {
            font-size: 1.4em;
            font-weight: bold;
            color: #99ff00;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .service-price {
            font-size: 2em;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .service-price small {
            font-size: 0.5em;
            color: #b0b0b0;
        }

        .service-speeds {
            color: #e0e0e0;
            font-size: 0.95em;
            margin-top: 10px;
            position: relative;
            z-index: 1;
        }

        .service-speeds div {
            margin: 5px 0;
        }

        /* Form Section */
        .form-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 15px;
            margin-top: 40px;
            border: 2px solid rgba(153, 255, 0, 0.2);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }

        .form-section.active {
            max-height: 1000px;
            padding: 40px;
        }

        .form-section h3 {
            color: #99ff00;
            font-size: 1.8em;
            margin-bottom: 25px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            color: #99ff00;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1.05em;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"] {
            width: 100%;
            padding: 14px;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(153, 255, 0, 0.3);
            border-radius: 8px;
            color: #ffffff;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus {
            outline: none;
            border-color: #99ff00;
            box-shadow: 0 0 15px rgba(153, 255, 0, 0.3);
        }

        .submit-btn {
            background: linear-gradient(135deg, #99ff00 0%, #7acc00 100%);
            color: #000000;
            padding: 16px 40px;
            border: none;
            border-radius: 8px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(153, 255, 0, 0.5);
        }

        .submit-btn:disabled {
            background: #666;
            cursor: not-allowed;
            opacity: 0.5;
        }

        /* Contact Section */
        .contact {
            background: rgba(153, 255, 0, 0.05);
            padding: 50px 20px;
            margin: 40px 0;
            border-radius: 15px;
            text-align: center;
        }

        .contact h2 {
            color: #99ff00;
            font-size: 2em;
            margin-bottom: 20px;
        }

        .contact p {
            font-size: 1.1em;
            color: #e0e0e0;
            margin-bottom: 10px;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.95);
            padding: 30px 20px;
            text-align: center;
            border-top: 3px solid #99ff00;
            margin-top: 60px;
        }

        footer p {
            color: #99ff00;
            font-size: 1.1em;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .logo-text {
                font-size: 36px;
            }

            .hero h1 {
                font-size: 1.8em;
            }

            .hero p {
                font-size: 1.1em;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .form-section {
                padding: 25px;
            }

            .form-section.active {
                padding: 25px;
            }
        }

        .error-message {
            color: #ff4444;
            text-align: center;
            padding: 20px;
            background: rgba(255, 68, 68, 0.1);
            border: 2px solid #ff4444;
            border-radius: 10px;
            margin: 20px 0;
        }