:root{--legacy-0284c7:#0284c7;--legacy-0b1b3d:#0b1b3d;--legacy-0ea5e9:#0ea5e9;--legacy-1e293b:#1e293b;--legacy-64748b:#64748b}
:root {
            --navy-deep: var(--legacy-0b1b3d, #0B1B3D);
            --navy-light: var(--legacy-1e293b, #1E293B);
            --cyan-premium: var(--legacy-0ea5e9, #0EA5E9);
            --cyan-hover: var(--legacy-0284c7, #0284C7);
            --text-main: var(--color-text-secondary, #334155);
            --text-muted: var(--legacy-64748b, #64748B);
            --bg-light: var(--color-surface-alt, #F8FAFC);
            --white: var(--color-background, #FFFFFF);
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
        }
        
        body { 
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
            line-height: 1.7; 
            color: var(--text-main); 
            margin: 0; 
            padding: 0; 
            scroll-behavior: smooth;
            background-color: var(--white);
        }
        
        .container { 
            width: 92%; 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 0 20px; 
        }
        
        h1, h2, h3, h4 { 
            color: var(--navy-deep); 
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        
        p {
            color: var(--text-main);
            font-size: 1.05rem;
        }

        .btn { 
            background: linear-gradient(135deg, var(--cyan-premium) 0%, var(--cyan-hover) 100%); 
            color: var(--white); 
            padding: 16px 40px; 
            text-decoration: none; 
            border-radius:var(--radius-sm, 8px); 
            font-weight: 600; 
            display: inline-block; 
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
            border: none; 
            cursor: pointer; 
            box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
            font-size: 1rem;
        }
        
        .btn:hover { 
            transform: translateY(-2px); 
            box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
        }
        
        /* Hero Section */
        .hero { 
            background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.05), transparent), var(--bg-light); 
            padding: 100px 0; 
            display: flex; 
            align-items: center; 
        }
        .hero-flex { 
            display: flex; 
            align-items: center; 
            gap: 60px; 
            flex-wrap: wrap; 
        }
        .hero-left { 
            flex: 1.2; 
            min-width: 320px; 
        }
        .hero-right { 
            flex: 0.8; 
            min-width: 320px; 
        }
        .hero-right img { 
            width: 100%; 
            border-radius: 20px; 
            box-shadow: var(--shadow-lg);
            transition: transform 0.5s ease;
        }
        .hero-right img:hover {
            transform: scale(1.02);
        }
        .hero h1 { 
            font-size: 3.5rem; 
            margin-top: 0;
            margin-bottom: 24px; 
            line-height: 1.15; 
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        /* Sections */
        .section-padding { 
            padding: 100px 0; 
        }
        .grey-bg { 
            background: var(--bg-light); 
        }
        
        .section-intro {
            max-width: 850px; 
            margin: 0 auto; 
            text-align: center;
        }
        .section-intro h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .section-intro p {
            margin-bottom: 24px;
        }

        /* Grid & Cards */
        .grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
            gap: 30px; 
            margin-top: 50px; 
        }
        .card { 
            background: var(--white); 
            padding: 40px 30px; 
            border-radius:var(--radius-lg, 16px); 
            box-shadow: var(--shadow-sm); 
            border-top: 4px solid var(--cyan-premium); 
            transition: all 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .card h3, .card h4 {
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 1.35rem;
        }
        .card p {
            margin: 0;
            font-size: 0.98rem;
            color: var(--text-muted);
        }
        
        /* Premium List Customization */
        .styled-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        .styled-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .styled-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--cyan-premium);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* Services List */
        .services-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
            gap: 20px; 
            margin-top: 40px;
        }
        .service-item { 
            background: var(--white); 
            padding: 20px; 
            border: 1px solid var(--color-primary-subtle, #E2E8F0); 
            border-radius:var(--radius-md, 12px); 
            text-align: center; 
            font-weight: 600; 
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }
        .service-item:hover {
            border-color: var(--cyan-premium);
            background: rgba(14, 165, 233, 0.02);
            transform: translateY(-2px);
        }
        .service-item a { 
            text-decoration: none; 
            color: var(--navy-deep); 
            display: block;
        }

        /* FAQ */
        .faq-container {
            max-width: 900px;
            margin: 50px auto 0 auto;
        }
        .faq-item { 
            margin-bottom: 25px; 
            background: var(--white);
            padding: 25px 30px;
            border-radius:var(--radius-md, 12px);
            box-shadow: var(--shadow-sm);
        }
        .faq-item h4 { 
            margin-top: 0;
            margin-bottom: 10px; 
            color: var(--navy-deep); 
            font-size: 1.2rem;
        }
        .faq-item p {
            margin: 0;
            color: var(--text-muted);
            font-size: 1rem;
        }

        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            .section-padding { padding: 70px 0; }
        }

        @media (max-width: 768px) {
            .hero-flex { flex-direction: column-reverse; text-align: center; gap: 30px; }
            .hero h1 { font-size: 2.4rem; }
            .hero { padding: 60px 0; }
            .section-intro h2 { font-size: 2rem; }
        }