        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        html {
            scroll-behavior: smooth; /* Smooth Scrolling */
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            overflow-x: hidden;
        }

        /* Variables */
        :root {
            --primary: #27ae60;
            --primary-hover: #219653;
            --dark: #111;
            --light: #fff;
            --gray: #6c757d;
        }

        /* Navigation Bar */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span {
            color: var(--primary);
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            color: var(--dark);
            cursor: pointer;
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 10px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--light);
        }

        .btn-primary {
            background: var(--primary);
            color: var(--light);
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            padding: 160px 5% 100px;
            text-align: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero h1 {
            font-size: 52px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
            max-width: 800px;
        }

        .hero p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 40px;
            max-width: 600px;
            line-height: 1.6;
        }

        /* Services Section */
        .services {
            padding: 100px 5%;
            background: var(--light);
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray);
            margin-bottom: 60px;
            font-size: 16px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--light);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #eee;
            transition: all 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(39, 174, 96, 0.1);
            border-color: var(--primary);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(39, 174, 96, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 28px;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: var(--primary);
            color: var(--light);
        }

        .service-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-card p {
            color: var(--gray);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Premium Section */
        .premium {
            padding: 100px 5%;
            background: var(--dark);
            color: var(--light);
            text-align: center;
        }

        .premium .section-title {
            color: var(--light);
        }

        .premium-box {
            background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
            max-width: 800px;
            margin: 0 auto;
            padding: 50px;
            border-radius: 16px;
            border: 1px solid #34495e;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        .premium-box h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #f1c40f;
        }

        .premium-features {
            list-style: none;
            margin: 30px 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
            text-align: left;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .premium-features li {
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .premium-features li i {
            color: var(--primary);
        }

        /* Footer & Social Icons */
        footer {
            background: #fff;
            padding: 60px 5% 30px;
            border-top: 1px solid #eee;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            background: #f8f9fa;
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--primary);
            color: var(--light);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            color: var(--gray);
            font-size: 14px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        /* Smooth Animations (Scroll Reveal) */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            /* Mobile Menu Styles */
            .menu-toggle {
                display: block;
            }
            .nav-wrapper {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 20px 5%;
                box-shadow: 0 10px 15px rgba(0,0,0,0.05);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-out;
                gap: 20px;
                border-top: 1px solid #eee;
            }
            .nav-wrapper.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .nav-links {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                width: 100%;
            }
            .nav-buttons {
                flex-direction: column;
                width: 100%;
                gap: 15px;
            }
            .nav-buttons .btn {
                text-align: center;
                width: 100%;
            }
            
            /* Responsive Section Layout Fixes */
            .hero { padding: 120px 5% 60px; }
            .hero h1 { font-size: 32px; }
            .hero p { font-size: 16px; margin-bottom: 30px; }
            .hero .btn { width: 100%; display: block; box-sizing: border-box; }
            
            .services { padding: 60px 5%; }
            .section-title { font-size: 28px; }
            .services-grid { gap: 20px; }
            
            .premium { padding: 60px 5%; }
            .premium-box { padding: 30px 20px; }
            .premium-box h3 { font-size: 22px; }
            .premium-features li { font-size: 14px; }
            
            footer { padding: 40px 5% 20px; }
        }