        :root {
            --km-blue: #86A8FF;
            --km-blue-soft: #c7dbff;
            --km-dark: #0f172a;
            --km-text: #4b5563;
            --km-border: #e5e7eb;
        }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--km-text);
              background-color: #ffffff;
              font-size: 14px;
              color: #fff;
              margin: 0;
              padding: 0;
              font-weight: 500;
              line-height: 1.7;
              letter-spacing: 0.5px;
              -webkit-font-smoothing: antialiased;            
        }

        a {
            text-decoration: none;
        }

        /* ========= HEADER ========= */

        .km-top-strip {
            background: var(--km-blue);
            color: #fff;
            font-size: 0.85rem;
        }

        .km-top-strip-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0.4rem 1.5rem;
            display: flex;
            justify-content: flex-end;
            gap: 1.8rem;
            align-items: center;
        }

        .km-top-strip a {
            color: #fff;
        }

        .km-top-strip i {
            margin-right: 0.35rem;
        }

        .km-header {
            position: sticky;
            top: 0;
            z-index: 40;
            background: #ffffff;
            box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
        }

        .km-header-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0.75rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .km-logo-wrap {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .km-logo-wrap img#km-logo {
            width: 56px;
            height: auto;
        }

        .km-logo-wrap img#km-words {
            height: 32px;
            width: auto;
        }

        .km-nav {
            display: flex;
            align-items: center;
            gap: 2rem;
            font-size: 0.95rem;
        }

        .km-nav a {
            color: #4b5563;
            font-weight: 500;
        }

        .km-nav a:hover {
            color: var(--km-blue);
        }

        .km-nav a.km-active {
            color: var(--km-blue);
            position: relative;
        }

        .km-nav a.km-active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.3rem;
            width: 100%;
            height: 2px;
            border-radius: 999px;
            background: var(--km-blue);
        }

        .km-header-actions {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        .km-btn-outline {
            border-radius: 999px;
            border: 1px solid var(--km-border);
            padding: 0.35rem 0.9rem;
            font-size: 0.85rem;
            background: #fff;
            color: #374151;
        }

        .km-btn-primary {
            border-radius: 999px;
            border: none;
            padding: 0.45rem 1.25rem;
            font-size: 0.9rem;
            font-weight: 600;
            background: var(--km-blue);
            color: #fff;
        }

        .km-btn-primary:hover {
            background: #1d4ed8;
        }

        @media (max-width: 960px) {
            .km-header-inner {
                flex-wrap: wrap;
                row-gap: 0.6rem;
            }
            .km-nav {
                flex-wrap: wrap;
                justify-content: center;
                flex: 1 1 100%;
                order: 2;
            }
            .km-header-actions {
                order: 3;
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            .km-top-strip-inner {
                justify-content: center;
                flex-wrap: wrap;
                gap: 0.6rem;
            }
        }

        /* ========= OUR TEAM HERO ========= */

        .team-hero {
            background: #d9e6ff; 
            padding: 70px 0 36px;
            text-align: center;
        }

        .team-hero-inner {
            max-width: 920px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .team-eyebrow {
            font-size: 0.8rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #4f46e5;
            margin-bottom: 0.65rem;
        }

        .team-title {
            font-size: clamp(2rem, 3vw, 2.6rem);
            font-weight: 700;
            color: var(--km-dark);
            margin-bottom: 0.75rem;
        }

        .team-subtitle {
            font-size: 1rem;
            color: #4b5563;
            max-width: 720px;
            margin: 0 auto 0.5rem;
        }

        .team-breadcrumb {
            margin-top: 0.6rem;
            font-size: 0.85rem;
            color: #6b7280;
        }

        .team-breadcrumb a {
            color: var(--km-blue);
        }

        .team-breadcrumb a:hover {
            text-decoration: underline;
        }

        .team-grid-section {
            background: #d9e6ff;
            padding: 40px 0 70px;
        }

        .team-grid-container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.8rem;
        }

        @media (max-width: 992px) {
            .team-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
        }

        .team-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.6rem 1.8rem 1.5rem;
            box-shadow: 0 18px 45px rgba(37, 99, 235, 0.10);
            border: 1px solid rgba(148, 163, 184, 0.25);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            position: relative;
            transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
        }

        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 22px 55px rgba(15, 23, 42, 0.15);
            border-color: rgba(37, 99, 235, 0.35);
        }

        .team-card-header {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .team-avatar {
            flex-shrink: 0;
            width: 72px;
            height: 72px;
            border-radius: 16px;
            overflow: hidden;
            background: #dbeafe;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-meta small {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #6366f1;
            margin-bottom: 0.2rem;
        }

        .team-name {
            font-weight: 700;
            font-size: 1.05rem;
            color: #111827;
        }

        .team-role {
            font-size: 0.9rem;
            color: #2563eb;
            font-weight: 500;
            margin-top: 0.1rem;
        }

        .team-quote {
            font-size: 0.9rem;
            color: #4b5563;
            margin-top: 0.5rem;
        }

        .team-card-footer {
            display: flex;
            justify-content: flex-end;
        }

        .team-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            border-radius: 999px;
            border: none;
            padding: 0.4rem 0.9rem;
            font-size: 0.85rem;
            font-weight: 500;
            background: #eff6ff;
            color: #2563eb;
            cursor: pointer;
            transition: background 0.16s ease, color 0.16s ease;
        }

        .team-more-btn span.icon {
            width: 18px;
            height: 18px;
            border-radius: 999px;
            border: 1px solid currentColor;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .team-more-btn:hover {
            background: #2563eb;
            color: #ffffff;
        }
        
        .team-detail-wrapper {
            max-width: 1180px;
            margin: 40px auto 0;
            padding: 0 1.5rem;
        }

        .team-detail-panel {
            display: none;
            grid-template-columns: 260px minmax(0, 1fr);
            gap: 2rem;
            background: #111827;
            color: #e5e7eb;
            border-radius: 20px;
            padding: 2.2rem 2.3rem;
            position: relative;
        }

        .team-detail-panel.open {
            display: grid;
        }

        @media (max-width: 768px) {
            .team-detail-panel {
                grid-template-columns: 1fr;
            }
        }

        .team-detail-photo {
            background: #0b1120;
            border-radius: 14px;
            overflow: hidden;
        }

        .team-detail-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-detail-meta small {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #a5b4fc;
            margin-bottom: 0.5rem;
        }

        .team-detail-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
        }

        .team-detail-role {
            font-size: 0.95rem;
            color: #c4b5fd;
            margin-top: 0.2rem;
        }

        .team-detail-body {
            font-size: 0.9rem;
            color: #e5e7eb;
            margin-top: 1.1rem;
            line-height: 1.6;
        }

        .team-detail-body p + p {
            margin-top: 0.7rem;
        }

        .team-detail-skills {
            margin-top: 1.3rem;
        }

        .team-detail-skills strong {
            display: block;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: #9ca3ff;
            margin-bottom: 0.5rem;
        }

        .team-detail-skills ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
            font-size: 0.9rem;
        }

        .team-detail-skills li {
            margin-bottom: 0.25rem;
        }

        .team-detail-close {
            position: absolute;
            top: 1.3rem;
            right: 1.5rem;
            width: 26px;
            height: 26px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.8);
            background: transparent;
            color: #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            cursor: pointer;
        }

        .team-detail-close:hover {
            background: rgba(148, 163, 184, 0.18);
        }
        .team-no-photo {
            grid-template-columns: 1fr !important;
            
        }

        /* ========= FOOTER ========= */

        .km-footer {
            background: #020617;
            color: #9ca3af;
            padding: 40px 0 18px;
            margin-top: 0;
        }

        .km-footer-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .km-footer-top {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            justify-content: space-between;
            align-items: flex-start;
            border-bottom: 1px solid rgba(148, 163, 184, 0.35);
            padding-bottom: 1.8rem;
            margin-bottom: 1.3rem;
        }

        .km-footer-logo a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .km-footer-logo img {
            height: 32px;
        }

        .km-footer-columns {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
        }

        .km-footer-col h5 {
            font-size: 0.9rem;
            color: #e5e7eb;
            margin-bottom: 0.6rem;
        }

        .km-footer-col a {
            display: block;
            font-size: 0.85rem;
            color: #9ca3af;
            margin-bottom: 0.25rem;
        }

        .km-footer-col a:hover {
            color: #e5e7eb;
        }

        .km-footer-policy {
            font-size: 0.78rem;
            line-height: 1.6;
            margin-bottom: 0.9rem;
        }

        .km-footer-bottom {
            font-size: 0.78rem;
            color: #6b7280;
        }

        @media (max-width: 768px) {
            .km-footer-top {
                flex-direction: column;
                align-items: flex-start;
            }
        }
