        :root {
            --primary: #145867;
            --primary-light: #2C8B9E;
            --accent: #C22660;
            --accent-light: #F2D9E4;
            --dark: #0A0F14;
            --light: #FAFBFC;
            --gray: #6B7280;
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.3);
            --shadow: 0 8px 32px rgba(20, 88, 103, 0.15);
            --shadow-lg: 0 20px 60px rgba(20, 88, 103, 0.2);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; }
        img { max-width: 100%; display: block; }

        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: 0.3s;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-img {
            height: 80px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: 0.3s;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .btn {
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 20px rgba(20, 88, 103, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(20, 88, 103, 0.4);
            background: var(--accent);
        }

        .page-header {
            padding: 180px 0 80px;
            background: linear-gradient(180deg, #e8b8cc 0%, var(--accent-light) 35%, var(--light) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
            opacity: 0.35;
            border-radius: 50%;
        }

        .page-header h1 {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .page-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 24px;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .breadcrumb a { color: var(--primary); }
        .breadcrumb span { color: var(--gray); }

        section { padding: 100px 0; }

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

        .section-label {
            display: inline-block;
            background: var(--accent-light);
            color: var(--accent);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary);
        }

        .mission {
            background: white;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .mission-content h2 {
            font-size: 2.2rem;
            margin-bottom: 24px;
            color: var(--primary);
        }

        .mission-content p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .mission-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 32px;
        }

        .value-card {
            background: var(--light);
            padding: 24px;
            border-radius: 16px;
            border-left: 4px solid var(--accent);
        }

        .value-card h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .value-card p {
            font-size: 0.95rem;
            color: var(--gray);
            margin: 0;
        }

        .mission-image {
            position: relative;
        }

        .mission-image-wrapper {
            background: url(0c27090be678ab2dc3121b2db87c0634.jpg);
            border-radius: 24px;
            aspect-ratio: 4/5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            position: relative;
            overflow: hidden;
        }

        .team {
            background: var(--light);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 32px;
        }

        .team-privacy-note {
            text-align: center;
            margin-top: 32px;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .mission-quote {
            font-size: 1.05rem;
            color: var(--primary);
            font-weight: 500;
            border-left: 4px solid var(--accent);
            padding-left: 16px;
            margin-bottom: 16px;
        }

        .team-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: 0.4s;
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .team-photo {
            height: 280px;
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            position: relative;
            overflow: hidden;
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .team-photo img.team-photo-face {
            object-position: center 18%;
        }

        .team-photo::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.2));
            pointer-events: none;
        }

        .team-info {
            padding: 24px;
        }

        .team-info h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .team-role {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 12px;
            display: block;
        }

        .team-info p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 16px;
        }

        .team-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .skill-tag {
            background: var(--accent-light);
            color: var(--accent);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .approach {
            background: white;
        }

        .approach-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .step-card {
            text-align: center;
            padding: 32px 24px;
            position: relative;
        }

        .step-card::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -12px;
            width: 24px;
            height: 2px;
            background: var(--primary-light);
        }

        .step-card:last-child::after {
            display: none;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step-card h4 {
            font-size: 1.15rem;
            margin-bottom: 12px;
            color: var(--primary);
        }

        .step-card p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .stats {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .stat-card {
            padding: 24px;
        }

        .stat-card .number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            display: block;
            margin-bottom: 8px;
        }

        .stat-card .label {
            font-size: 1.05rem;
            opacity: 0.9;
        }

       
        footer {
            background: var(--dark);
            color: rgba(255,255,255,0.6);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo {
            color: white;
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: white;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: rgba(255,255,255,0.6); }
        .footer-col a:hover { color: var(--accent); }


        @media (max-width: 992px) {
            .mission-grid { grid-template-columns: 1fr; gap: 40px; }
            .mission-values { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .approach-steps { grid-template-columns: repeat(2, 1fr); }
            .approach-steps .step-card::after { display: none; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .page-header h1 { font-size: 2.2rem; }
            .section-title { font-size: 1.8rem; }
            .team-grid { grid-template-columns: 1fr; }
            .approach-steps { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            .cta-box { padding: 40px 24px; }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
