
        /*-------- FLOWRUSH OFFICIAL COLOR THEME --------*/
        :root {
            --brand-deep-blue: #001a4d;
            --brand-primary: #1e40af;
            --brand-accent: #3b82f6;
            --brand-light: #dbeafe;
            --brand-hover: #2563eb;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --bg-soft: #f8fafc;
            --border-light: #e2e8f0;
            --grad-hero: radial-gradient(circle at top right, #1e40af, #001a4d);
            --grad-primary: linear-gradient(135deg, #1e40af, #3b82f6);
            --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.02);
            --radius-lg: 20px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Verdana', sans-serif;
        }

        /*========== RESET & BASE ==========*/
        * { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box; 
        }
        
        html, body {
            max-width: 100%;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        body { 
            font-family: var(--font-family); 
            color: var(--text-dark); 
            background: white; 
            line-height: 1.6; 
            overflow-x: hidden;
            width: 100%;
        }
        
        .container { 
            max-width: 1280px; 
            margin: 0 auto; 
            padding: 0 20px; 
            width: 100%; 
        }

        @media (min-width: 768px) {
            .container { padding: 0 30px; }
        }
        
        h1, h2, h3, h4 { 
            font-weight: 700; 
            line-height: 1.2; 
        }
        
        h1 { 
            font-size: clamp(2rem, 5vw, 3.8rem); 
            letter-spacing: -0.02em; 
        }
        
        h2 { 
            font-size: clamp(1.8rem, 4vw, 2.8rem); 
        }
        
        a { 
            text-decoration: none; 
            -webkit-tap-highlight-color: transparent;
        }
        
        img { 
            max-width: 100%; 
            height: auto; 
            display: block; 
        }
        
        .btn {
            display: inline-flex; 
            align-items: center; 
            justify-content: center;
            padding: 12px 28px; 
            border-radius: 50px; 
            font-weight: 600;
            transition: all 0.25s ease; 
            cursor: pointer; 
            border: none; 
            font-size: 15px;
        }
        
        .btn-primary { 
            background: var(--grad-primary); 
            color: white; 
            box-shadow: 0 4px 10px rgba(37,99,235,0.2); 
        }
        
        .btn-primary:hover { 
            transform: translateY(-2px); 
            box-shadow: var(--shadow-lg); 
        }

        /*========== HEADER SPACER - IMPORTANT ==========*/
        .header-spacer {
            height: calc(38px + 85px);
            width: 100%;
        }

        /*========== BREADCRUMB STYLES (UPDATED) ==========*/
        .breadcrumb-wrapper {
            background: var(--bg-soft);
            padding: 16px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            list-style: none;
            font-size: 1rem;
        }
        .breadcrumb-item {
            display: flex;
            align-items: center;
        }
        .breadcrumb-item a {
            color: var(--brand-primary);
            font-weight: 500;
            transition: color 0.2s;
        }
        .breadcrumb-item a:hover {
            color: var(--brand-hover);
            text-decoration: underline;
        }
        .breadcrumb-item.active {
            color: var(--text-muted);
            font-weight: 400;
        }
        .breadcrumb-item + .breadcrumb-item::before {
            content: "/";
            padding-right: 8px;
            color: var(--text-muted);
        }

        /*========== HERO SECTION ==========*/
        .hero-section-inner-page {
            background: linear-gradient(135deg, #001a4d 0%, #1e3a8a 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero-section-inner-page h1 {
            color: white;
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin: 0;
        }

        /*========== TEAM SECTION - SIMPLE DESIGN (NO SHADOW/HOVER/REFLECTION) ==========*/
        .team-section {
            padding: 80px 0;
            background: var(--bg-soft);
            contain: layout;
        }
        .team-section *, .team-section *:hover, .team-section *:focus {
            transition: none !important;
        }

        .team-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .team-header h2 {
            color: var(--brand-deep-blue);
            margin-bottom: 15px;
        }

        .team-header h2 span {
            color: var(--brand-primary);
        }

        .team-header p {
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.2rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 640px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (min-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 35px;
            }
        }

        .team-card {
            background: white;
            border-radius: 30px;
            padding: 35px 25px;
            text-align: center;
            position: relative;
            border: 1px solid var(--border-light);
        }

        .team-card img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            margin: 0 auto 20px;
            object-fit: cover;
            border: 4px solid var(--brand-light);
        }

        @media (min-width: 768px) {
            .team-card img {
                width: 160px;
                height: 160px;
            }
        }

        .team-card h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: var(--brand-deep-blue);
        }

        .team-role {
            display: inline-block;
            background: var(--brand-light);
            color: var(--brand-primary);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 15px;
        }

        .team-bio {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .team-expertise {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-top: 15px;
        }

        .expertise-tag {
            background: rgba(59, 130, 246, 0.1);
            color: var(--brand-primary);
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 50px;
            font-weight: 500;
        }


        
        /*========== POPUP ==========*/
        .contact-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            z-index: 20000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(5px);
        }

        .contact-popup {
            background: white;
            max-width: 600px;
            width: 100%;
            border-radius: 30px;
            padding: 30px;
            position: relative;
        }

        .contact-popup .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 36px;
            cursor: pointer;
            line-height: 1;
            color: #000;
        }

        /*========== MOBILE OPTIMIZATION ==========*/
        @media (max-width: 768px) {
            .container { padding: 0 16px; }

            .hero-section-inner-page {
                padding: 40px 0;
            }

            .hero-section-inner-page h1 {
                font-size: 2rem;
            }

            .team-section {
                padding: 60px 0;
            }

            .team-header h2 {
                font-size: 1.8rem;
            }

            .team-header p {
                font-size: 1rem;
            }

            .team-card {
                padding: 30px 20px;
            }

            .team-card img {
                width: 130px;
                height: 130px;
            }

            .team-card h3 {
                font-size: 1.3rem;
            }

            .team-bio {
                font-size: 0.9rem;
            }

            .expertise-tag {
                font-size: 0.7rem;
                padding: 3px 10px;
            }

            .floating-icon, .floating-call {
                width: 60px !important;
                height: 60px !important;
            }

            .floating-icon svg, .floating-call svg {
                width: 28px !important;
                height: 28px !important;
            }
        }

        @media (max-width: 480px) {
            .hero-section-inner-page h1 {
                font-size: 1.8rem;
            }

            .team-card img {
                width: 120px;
                height: 120px;
            }

            .floating-icon, .floating-call {
                width: 55px !important;
                height: 55px !important;
                bottom: 15px !important;
            }

            .floating-icon {
                left: 12px !important;
            }

            .floating-call {
                right: 12px !important;
            }

            .floating-icon svg, .floating-call svg {
                width: 26px !important;
                height: 26px !important;
            }
        }
  