    :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #6366f1;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #1e293b;
            --gray: #64748b;
            --success: #10b981;
            --gradient-blue: linear-gradient(135deg, #2563eb 0%, #6366f1 100%);
            --gradient-light: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #ffffff;
            overflow-x: hidden;
        }
        
        p{
            text-align: justify;
        }

        .btn {
            display: inline-block;
            padding: 16px 40px;
            background: var(--gradient-blue);
            color: white;
            text-decoration: none;
            border-radius: 16px;
            font-weight: 700;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
            letter-spacing: 0.5px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            position: relative;
        }

        .logo span {
            color: var(--accent);
        }

        .logo span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .logo:hover span::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        #nav-menu {
            display: flex;
            gap: 2.5rem;
        }

        #nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            font-size: 1.1rem;
        }

        #nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        #nav-menu a:hover {
            color: var(--primary);
        }

        #nav-menu a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
            padding: 6rem 0 4rem;
            background: var(--gradient-blue);
            color: white;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            font-weight: 500;
            line-height: 1.7;
        }

        .hero .btn {
            background: white;
            color: var(--primary);
        }

        /* Section Base */
        .section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1.2rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.15rem;
            font-weight: 500;
        }

        .section-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-content p {
            color: var(--gray);
            margin-bottom: 1.4rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Section Variants */
        .section.bg-light {
            background: var(--gradient-light);
        }

        .section.bg-gray {
            background: #f8fafc;
        }

        .section.bg-blue {
            background: #f0f9ff;
        }

        /* CTA Section */
        .cta {
            padding: 6rem 0;
            text-align: center;
            background: var(--gradient-blue);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .cta h3 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .cta .btn {
            background: white;
            color: var(--primary);
            font-size: 1.2rem;
            padding: 18px 48px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.6rem;
            }
            .hero p {
                font-size: 1.15rem;
            }
            .section-title h2 {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            #nav-menu {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: white;
                padding: 2rem;
                flex-direction: column;
                gap: 2rem;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                z-index: 1001;
            }

            #nav-menu.show {
                transform: translateY(0);
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .cta h3 {
                font-size: 2.2rem;
            }
        }