
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* Header */
        .top-bar { background: #6A0DAD; color: white; padding: 8px 0; font-size: 14px; }
        .top-bar .container { display: flex; justify-content: space-between; align-items: center; }
        .header { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
        .logo { font-size: 1.8rem; font-weight: bold; color: #6A0DAD; }
        .nav-menu { display: flex; list-style: none; gap: 2rem; }
        .nav-menu a { text-decoration: none; color: #333; font-weight: 500; transition: color 0.3s; }
        .nav-menu a:hover { color: #6A0DAD; }
        .cta-btn { background: #1E90FF; color: white; padding: 12px 24px; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; transition: all 0.3s; }
        .cta-btn:hover { background: #87CEFA; transform: translateY(-2px); }

        /* Hero */
        .hero { background: linear-gradient(rgba(106, 13, 173,0.8), rgba(106, 13, 173,0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23e3f2fd" width="1200" height="600"/><circle fill="%23bbdefb" cx="300" cy="200" r="150"/><circle fill="%2397cbff" cx="900" cy="400" r="120"/><path fill="%2363b8ff" d="M200 450 Q400 350 600 450 Q800 550 1000 450 L1200 500 L1200 600 L0 600 Z"/></svg>'); color: white; padding: 140px 0 80px; text-align: center; min-height: 70vh; display: flex; align-items: center; }
        .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }
        .hero p { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.95; }
        .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .btn-secondary { background: transparent; color: white; border: 2px solid white; padding: 12px 24px; border-radius: 5px; cursor: pointer; transition: all 0.3s; }

        /* Sections */
        .section { padding: 80px 0; }
        .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: #6A0DAD; }
        .about-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; text-align: center; }

        /* Services */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
        .service-card { background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; transition: all 0.3s; }
        .service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
        .service-icon { font-size: 3rem; color: #6A0DAD; margin-bottom: 1rem; }

        /* Why Choose Us */
        .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

        /* Plans */
        .plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
        .plan-card { border: 2px solid #e3f2fd; padding: 2rem; border-radius: 15px; text-align: center; position: relative; transition: all 0.3s; }
        .plan-card.featured { border-color: #1E90FF; background: linear-gradient(135deg, #f8fff8, white); transform: scale(1.05); }
        .plan-price { font-size: 2.5rem; color: #1E90FF; font-weight: bold; margin: 1rem 0; }

        /* Testimonials */
        .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
        .testimonial { background: linear-gradient(135deg, #e3f2fd, #bbdefb); padding: 2rem; border-radius: 15px; text-align: center; position: relative; }

        /* Contact Form */
        .contact-form { max-width: 600px; margin: 0 auto; background: white; padding: 2.5rem; border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: #6A0DAD; }
        .form-group input, .form-group select { width: 100%; padding: 12px; border: 2px solid #e3f2fd; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s; }
        .form-group input:focus, .form-group select:focus { outline: none; border-color: #6A0DAD; }

        /* Footer */
        .footer { background: #6A0DAD; color: white; padding: 3rem 0 1rem; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
        .social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
        .social-icons a { color: white; font-size: 1.5rem; transition: all 0.3s; }
        .social-icons a:hover { color: #1E90FF; transform: translateY(-3px); }

        /* Modal */
        .modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); }
        .modal-content { background: white; margin: 8% auto; padding: 2.5rem; width: 90%; max-width: 500px; border-radius: 15px; position: relative; animation: slideIn 0.3s ease; }
        @keyframes slideIn { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
        .close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; position: absolute; right: 20px; top: 15px; }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .hero h1 { font-size: 2.5rem; }
            .btn-group { flex-direction: column; align-items: center; }
            .section-title { font-size: 2rem; }
        }
   