
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #6a0dad, #9932cc, #8a2be2);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(106, 13, 173, 0.3);
            backdrop-filter: blur(10px);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(45deg, #dda0dd, #e6e6fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
            position: relative;
        }

        .nav-menu a:hover {
            color: #dda0dd;
            transform: translateY(-2px);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #dda0dd;
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .newsletter-btn {
            background: linear-gradient(135deg, #dda0dd, #e6e6fa);
            color: #6a0dad;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(221, 160, 221, 0.3);
        }

        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(221, 160, 221, 0.5);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(106, 13, 173, 0.9), rgba(153, 50, 204, 0.8), rgba(138, 43, 226, 0.9)),
                        radial-gradient(circle at 30% 40%, rgba(221, 160, 221, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 70% 60%, rgba(230, 230, 250, 0.2) 0%, transparent 50%),
                        linear-gradient(45deg, #f8f4ff, #f0e6ff);
            color: white;
            padding: 140px 0 100px;
            text-align: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23dda0dd" fill-opacity="0.1" points="0,1000 1000,0 1000,1000"/></svg>');
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ffffff, #dda0dd, #e6e6fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInDown 1s ease-out;
        }

        .hero-content .subtitle {
            font-size: 1.6rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            animation: slideInUp 1s ease-out 0.3s both;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeIn 1s ease-out 0.6s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, #dda0dd, #e6e6fa);
            color: #6a0dad;
            padding: 18px 35px;
            border: none;
            border-radius: 35px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(221, 160, 221, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(221, 160, 221, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 18px 35px;
            border: 2px solid rgba(255, 255, 255, 0.8);
            border-radius: 35px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #dda0dd;
            color: #dda0dd;
            transform: translateY(-2px);
        }

        /* About Section */
        .about {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8f4ff, #f0e6ff);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="%236a0dad" fill-opacity="0.05" cx="200" cy="200" r="100"/><circle fill="%239932cc" fill-opacity="0.05" cx="800" cy="800" r="150"/></svg>');
            pointer-events: none;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about-content h2 {
            font-size: 3.5rem;
            background: linear-gradient(135deg, #6a0dad, #9932cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
        }

        .about-content p {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            background: linear-gradient(135deg, rgba(106, 13, 173, 0.1), rgba(221, 160, 221, 0.1));
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(106, 13, 173, 0.2);
            transition: all 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(106, 13, 173, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            background: linear-gradient(135deg, #6a0dad, #9932cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .stat-label {
            color: #666;
            font-size: 1rem;
            margin-top: 0.5rem;
        }

        /* Features Section */
        .features {
            padding: 120px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title h2 {
            font-size: 3.5rem;
            background: linear-gradient(135deg, #6a0dad, #9932cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .section-title p {
            font-size: 1.3rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
        }

        .feature-card {
            background: linear-gradient(135deg, #f8f4ff, #ffffff);
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(106, 13, 173, 0.1);
            text-align: center;
            transition: all 0.4s;
            border: 1px solid rgba(221, 160, 221, 0.2);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(221, 160, 221, 0.1), transparent);
            transition: left 0.6s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(106, 13, 173, 0.2);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #6a0dad, #9932cc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
            color: white;
            box-shadow: 0 10px 30px rgba(106, 13, 173, 0.3);
        }

        .feature-card h3 {
            color: #6a0dad;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .feature-card p {
            color: #666;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Services Section */
        .services {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8f4ff, #f0e6ff);
        }

        .service-categories {
            display: flex;
            justify-content: center;
            margin-bottom: 4rem;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .category-btn {
            background: white;
            border: 2px solid #6a0dad;
            color: #6a0dad;
            padding: 15px 30px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .category-btn.active,
        .category-btn:hover {
            background: linear-gradient(135deg, #6a0dad, #9932cc);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(106, 13, 173, 0.3);
        }

        .service-grid {
            display: none;
        }

        .service-grid.active {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .service-item {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(106, 13, 173, 0.1);
            transition: all 0.3s;
            border-left: 5px solid #dda0dd;
            position: relative;
        }

        .service-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(106, 13, 173, 0.2);
            border-left-color: #6a0dad;
        }

        .service-item h4 {
            color: #6a0dad;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .service-item p {
            color: #666;
            line-height: 1.7;
        }

        .service-item .service-features {
            list-style: none;
            margin-top: 1.5rem;
        }

        .service-item .service-features li {
            color: #666;
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .service-item .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #9932cc;
            font-weight: bold;
        }

        /* Testimonials */
        .testimonials {
            padding: 120px 0;
            background: white;
        }

        .testimonial-slider {
            display: flex;
            overflow-x: auto;
            gap: 3rem;
            padding: 3rem 0;
            scroll-behavior: smooth;
        }

        .testimonial-card {
            min-width: 450px;
            background: linear-gradient(135deg, #f8f4ff, #ffffff);
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(106, 13, 173, 0.1);
            position: relative;
            border: 1px solid rgba(221, 160, 221, 0.2);
        }

        .testimonial-card::before {
            content: '"';
            font-size: 5rem;
            color: rgba(106, 13, 173, 0.2);
            position: absolute;
            top: 1rem;
            left: 2rem;
            font-family: serif;
        }

        .testimonial-content {
            font-style: italic;
            color: #666;
            margin-bottom: 2rem;
            padding-top: 2rem;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .author-image {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6a0dad, #9932cc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
        }

        .author-details h5 {
            color: #6a0dad;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .author-details span {
            color: #666;
            font-size: 0.95rem;
        }

        .rating {
            margin-top: 0.5rem;
        }

        .rating span {
            color: #ffd700;
            font-size: 1.2rem;
        }

        /* FAQ Section */
        .faq {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8f4ff, #f0e6ff);
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-question {
            background: white;
            margin-bottom: 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(106, 13, 173, 0.1);
            border: 1px solid rgba(221, 160, 221, 0.2);
        }

        .faq-header {
            background: linear-gradient(135deg, #6a0dad, #9932cc);
            color: white;
            padding: 2rem 2.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-header:hover {
            background: linear-gradient(135deg, #9932cc, #6a0dad);
        }

        .faq-header h4 {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .faq-toggle {
            font-size: 1.8rem;
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 2.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .faq-answer.active {
            padding: 2.5rem;
            max-height: 400px;
        }

        .faq-answer p {
            color: #666;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Contact Section */
        .contact {
            padding: 120px 0;
            background: white;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-info h3 {
            color: #6a0dad;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .contact-info p {
            color: #666;
            margin-bottom: 3rem;
            line-height: 1.7;
            font-size: 1.2rem;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #f8f4ff, #ffffff);
            border-radius: 15px;
            border: 1px solid rgba(221, 160, 221, 0.2);
            transition: all 0.3s;
        }

        .contact-method:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(106, 13, 173, 0.1);
        }

        .contact-method-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #6a0dad, #9932cc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
        }

        .contact-form-container {
            background: linear-gradient(135deg, #f8f4ff, #ffffff);
            padding: 4rem;
            border-radius: 30px;
            box-shadow: 0 20px 50px rgba(106, 13, 173, 0.15);
            border: 1px solid rgba(221, 160, 221, 0.2);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .input-group {
            margin-bottom: 2rem;
        }

        .input-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: #6a0dad;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .input-group input,
        .input-group select,
        .input-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(221, 160, 221, 0.3);
            border-radius: 15px;
            font-size: 1.1rem;
            transition: all 0.3s;
            background: white;
        }

        .input-group input:focus,
        .input-group select:focus,
        .input-group textarea:focus {
            outline: none;
            border-color: #9932cc;
            box-shadow: 0 0 0 4px rgba(153, 50, 204, 0.1);
        }

        .submit-btn {
            background: linear-gradient(135deg, #6a0dad, #9932cc);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 15px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(106, 13, 173, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(106, 13, 173, 0.4);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #4a0e4e, #6a0dad, #2d0a30);
            color: white;
            padding: 5rem 0 2rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23dda0dd" fill-opacity="0.05" points="0,0 1000,1000 0,1000"/></svg>');
            pointer-events: none;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 4rem;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .footer-section h3 {
            color: #dda0dd;
            margin-bottom: 2rem;
            font-size: 1.5rem;
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 1rem;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-section ul li a:hover {
            color: #dda0dd;
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid rgba(221, 160, 221, 0.3);
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            z-index: 2;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 3000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(106, 13, 173, 0.8);
            backdrop-filter: blur(5px);
        }

                .modal-content {
            background: linear-gradient(135deg, #ffffff, #f8f4ff);
            margin: 2% auto;
            padding: 4rem;
            border-radius: 30px;
            width: 90%;
            max-width: 600px;
            position: relative;
            box-shadow: 0 25px 60px rgba(106, 13, 173, 0.3);
            border: 1px solid rgba(221, 160, 221, 0.2);
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-close {
            position: absolute;
            top: 2rem;
            right: 2.5rem;
            font-size: 2.5rem;
            cursor: pointer;
            color: #6a0dad;
            transition: all 0.3s;
        }

        .modal-close:hover {
            color: #9932cc;
            transform: scale(1.1);
        }

        .modal h2 {
            color: #6a0dad;
            margin-bottom: 2rem;
            font-size: 2.2rem;
        }

        .modal h3 {
            color: #9932cc;
            margin: 2rem 0 1rem;
            font-size: 1.3rem;
        }

        .modal p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        /* Animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-content .subtitle {
                font-size: 1.3rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                min-width: 320px;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .modal-content {
                margin: 5% auto;
                padding: 2rem;
            }

            .section-title h2 {
                font-size: 2.5rem;
            }

            .about-content h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content .subtitle {
                font-size: 1.1rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 15px 25px;
                font-size: 1rem;
            }

            .feature-card {
                padding: 2rem;
            }

            .testimonial-card {
                min-width: 280px;
                padding: 2rem;
            }

            .contact-form-container {
                padding: 2rem;
            }
        }
    