 :root {
            /* Brand Colors */
            --brand-magenta: #E51E63;
            --brand-indigo: #6C4DFF;
            --brand-cyan: #00AEEF;
            --brand-gradient: linear-gradient(90deg, #E51E63 0%, #6C4DFF 52%, #00AEEF 100%);
            
            /* Neutrals */
            --navy-900: #0B1B3B;
            --slate-700: #334155;
            --slate-100: #F1F5F9;
            --paper: #F8FAFC;
            --ink: #0F172A;
            
            /* Accents */
            --finance-gold: #D4A81E;
            --success: #16A34A;
            --warning: #D97706;
            --danger: #DC2626;
            --link: #0EA5E9;
            
            /* Typography */
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            /* Spacing */
            --section-padding: 5rem;
            --container-max: 1200px;
        }
        
        @media (max-width: 768px) {
            :root {
                --section-padding: 3rem;
            }
        }
        
        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.6;
            color: var(--ink);
            background-color: var(--paper);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            letter-spacing: -0.5px;
            margin-bottom: 1.5rem;
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.14;
            font-weight: 700;
        }
        
        h2 {
            font-size: 2.5rem;
            line-height: 1.2;
        }
        
        h3 {
            font-size: 1.75rem;
            line-height: 1.28;
        }
        
        p {
            margin-bottom: 1.5rem;
        }
        
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        section {
            padding: var(--section-padding) 0;
            position: relative;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 0.875rem 1.75rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: var(--font-body);
            font-size: 1rem;
        }
        
        .btn-primary {
            background: var(--brand-gradient);
            color: white;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--navy-900);
            border: 2px solid var(--navy-900);
        }
        
        .btn-secondary:hover {
            background: var(--navy-900);
            color: white;
        }
        
        /* Navigation */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            max-width: var(--container-max);
            margin: 0 auto;
        }
        
        .logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.5rem;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            height: 40px;
            margin-right: 10px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin-left: 2rem;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--navy-900);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--brand-cyan);
        }
        
        /* Page Header */
        .page-header {
            background: var(--navy-900);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        
        .page-title {
            color: white;
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            font-size: 1.25rem;
            color: var(--slate-100);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Card Styles */
        .card {
            background: white;
            border-radius: 1.25rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--brand-gradient);
        }
        
        /* Process Section */
        .process-section {
            background: var(--slate-100);
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .step {
            text-align: center;
            padding: 2rem;
        }
        
        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--brand-gradient);
            color: white;
            font-weight: 600;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }
        
        .step-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--navy-900);
        }
        
        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .benefit-item {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .benefit-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--brand-gradient);
            color: white;
            font-size: 1.75rem;
            margin: 0 auto 1.5rem;
        }
        
        .benefit-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--navy-900);
        }
        
        /* Sectors Section */
        .sectors-section {
            background: var(--slate-100);
        }
        
        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .sector-item {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .sector-item:hover {
            transform: translateY(-5px);
        }
        
        .sector-name {
            font-weight: 600;
            color: var(--navy-900);
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--navy-900);
            color: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .stat-card {
            text-align: center;
            padding: 2rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.125rem;
            color: var(--slate-100);
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 4rem 0;
        }
        
        .cta-title {
            margin-bottom: 1.5rem;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        /* Footer */
        .footer {
            background: var(--navy-900);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-heading {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-link {
            margin-bottom: 0.75rem;
        }
        
        .footer-link a {
            color: var(--slate-100);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-link a:hover {
            color: var(--brand-cyan);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--slate-700);
            color: var(--slate-100);
            font-size: 0.875rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .nav-menu {
                display: none;
            }
            
            .process-steps, .benefits-grid, .sectors-grid, .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .page-header {
                padding: 3rem 0;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }