
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }

        h1 {
            color: white;
            margin-bottom: 40px;
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        h2 {
            color: white;
            margin-bottom: 20px;
            font-size: 2rem;
        }

        h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Glassmorphism Container */
        .glass-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 40px;
            width: 100%;
        }

        /* Navigation Styles */
        .navbar {
            display: flex;
            list-style: none;
            position: relative;
            justify-content: center;
        }

        .navbar li {
            margin: 0 5px;
        }

        .navbar li a {
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            display: flex;
            align-items: center;
            font-weight: 500;
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .navbar li a i {
            margin-right: 8px;
            font-size: 18px;
        }

        .navbar li a:hover {
            color: #fff;
            transform: translateY(-5px);
        }

        .highlight {
            position: absolute;
            height: 60px;
            background: linear-gradient(45deg, #FF416C, #FF4B2B);
            border-radius: 15px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 0;
            box-shadow: 0 5px 15px rgba(255, 75, 43, 0.4);
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            background: linear-gradient(45deg, #FF416C, #FF4B2B);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .service-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .service-desc {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 15px;
            flex-grow: 1;
        }

        /* Button Styles */
        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 15px;
            background: linear-gradient(45deg, #FF416C, #FF4B2B);
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 75, 43, 0.4);
            display: inline-block;
            text-decoration: none;
            margin-top: auto;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 75, 43, 0.6);
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 40px 0;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        /* Category Tabs */
        .category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .category-btn {
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 10px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-btn:hover, .category-btn.active {
            background: linear-gradient(45deg, #FF416C, #FF4B2B);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            color: white;
            text-align: center;
            padding: 40px 20px;
            margin-top: 20px;
            width: 100%;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            text-align: left;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 10px;
            font-size: 1.2rem;
            width: 30px;
            height: 30px;
            background: linear-gradient(45deg, #FF416C, #FF4B2B);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            transform: translateY(-5px);
        }

        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                align-items: center;
            }
            
            .navbar li {
                margin: 5px 0;
            }
            
            .highlight {
                display: none;
            }
            
            .navbar li a:hover {
                transform: translateX(5px);
            }
            
            .glass-container {
                padding: 20px 15px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .category-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .category-btn {
                width: 100%;
                text-align: center;
            }
        }
    