
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Y29kZSUyMGJhY2tncm91bmR8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&w=800&q=60') no-repeat center center fixed;
            background-size: cover;
            color: #e8f4f8;
            font-family: 'Raleway', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: rgba(5, 18, 30, 0.72);
            z-index: 0;
            pointer-events: none;
        }

        header, main, footer { position: relative; z-index: 1; }

        header { position: sticky; top: 0; z-index: 100; }

        /* ── Hero ── */
        .about-hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 20px 60px;
        }

        .about-hero .eyebrow {
            font-family: 'Cinzel', serif;
            font-size: 11px;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: #7ecbda;
            margin-bottom: 18px;
            opacity: 0;
            animation: fadeUp 0.8s 0.2s forwards;
        }

        .about-hero h2 {
            font-family: 'Cinzel', serif;
            font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.15;
            color: #ffffff;
            text-shadow: 0 0 40px rgba(126, 203, 218, 0.35);
            opacity: 0;
            animation: fadeUp 0.9s 0.35s forwards;
        }

        .about-hero h2 span {
            background: linear-gradient(90deg, #7ecbda, #c3a0d8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-hero .subtitle {
            max-width: 560px;
            margin-top: 20px;
            font-size: 1rem;
            line-height: 1.8;
            color: #b0cdd5;
            font-weight: 300;
            opacity: 0;
            animation: fadeUp 0.9s 0.5s forwards;
        }

        .divider {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #7ecbda, #c3a0d8);
            margin: 32px auto 0;
            border-radius: 2px;
            opacity: 0;
            animation: fadeUp 0.9s 0.65s forwards;
        }

        /* ── Stats bar ── */
        .stats-bar {
            display: flex;
            justify-content: center;
            max-width: 700px;
            margin: 0 auto 70px;
            background: linear-gradient(135deg, rgba(1, 77, 100, 0.5), rgba(90, 68, 89, 0.4));
            border: 1px solid rgba(126, 203, 218, 0.2);
            border-radius: 16px;
            overflow: hidden;
            backdrop-filter: blur(8px);
            opacity: 0;
            animation: fadeUp 0.8s 0.8s forwards;
        }

        .stat {
            flex: 1;
            padding: 28px 20px;
            text-align: center;
            border-right: 1px solid rgba(126, 203, 218, 0.15);
        }
        .stat:last-child { border-right: none; }

        .stat .num {
            font-family: 'Cinzel', serif;
            font-size: 1.9rem;
            font-weight: 700;
            color: #7ecbda;
            display: block;
        }

        .stat .lbl {
            font-size: 0.72rem;
            color: #7a9ca8;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: 4px;
            display: block;
            font-weight: 400;
        }

        /* ── Cards ── */
        .cards-section {
            padding: 0 40px 70px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-label {
            font-family: 'Cinzel', serif;
            font-size: 10px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: #7ecbda;
            text-align: center;
            margin-bottom: 36px;
            opacity: 0;
            animation: fadeUp 0.8s 0.9s forwards;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 22px;
        }

        .card {
            background: linear-gradient(135deg, rgba(1, 77, 100, 0.55) 0%, rgba(28, 77, 90, 0.45) 100%);
            border: 1px solid rgba(126, 203, 218, 0.18);
            border-radius: 16px;
            padding: 36px 28px;
            backdrop-filter: blur(10px);
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
            opacity: 0;
            animation: fadeUp 0.8s forwards;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 140px; height: 140px;
            background: radial-gradient(circle, rgba(126, 203, 218, 0.1), transparent 70%);
            border-radius: 50%;
        }

        .card:nth-child(1) { animation-delay: 1.0s; }
        .card:nth-child(2) { animation-delay: 1.15s; }
        .card:nth-child(3) { animation-delay: 1.3s; }
        .card:nth-child(4) { animation-delay: 1.45s; }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(126, 203, 218, 0.3);
            border-color: rgba(126, 203, 218, 0.4);
        }

        .card-icon { font-size: 2rem; margin-bottom: 16px; display: block; }

        .card h3 {
            font-family: 'Cinzel', serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: #c3e8f0;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .card p {
            font-size: 0.87rem;
            line-height: 1.8;
            color: #9ec5cf;
            font-weight: 300;
        }

        /* ── Team ── */
        .team-section {
            padding: 0 40px 80px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .team-grid {
            display: flex;
            gap: 28px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .team-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            opacity: 0;
            animation: fadeUp 0.8s forwards;
        }
        .team-card:nth-child(1) { animation-delay: 1.3s; }
        .team-card:nth-child(2) { animation-delay: 1.45s; }
        .team-card:nth-child(3) { animation-delay: 1.6s; }

        .avatar {
            max-width: 82px; max-height: 82px;
            border-radius: 50%;
            background: linear-gradient(135deg, #5a4459, #193353);
            border: 2px solid rgba(126, 203, 218, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .avatar img {
            max-width: 52px; max-height: 52px;
            border-radius: 50%;
            border: 2px solid rgba(126, 203, 218, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .team-card:hover .avatar {
            transform: scale(1.08);
            box-shadow: 0 0 22px rgba(126, 203, 218, 0.35);
        }

        .team-card .name {
            font-family: 'Cinzel', serif;
            font-size: 0.8rem;
            color: #c3e8f0;
            letter-spacing: 0.5px;
        }

        .team-card .role {
            font-size: 0.7rem;
            color: #7ecbda;
            font-weight: 300;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* ── Footer ── */
        footer {
            text-align: center;
            padding: 26px 20px;
            font-size: 0.8rem;
            color: #4a7080;
            border-top: 1px solid rgba(126, 203, 218, 0.1);
            letter-spacing: 0.5px;
        }

        /* ── Animation ── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(22px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 600px) {
            .cards-section, .team-section { padding-left: 18px; padding-right: 18px; }
            .stats-bar { flex-direction: column; }
            .stat { border-right: none; border-bottom: 1px solid rgba(126, 203, 218, 0.15); }
            .stat:last-child { border-bottom: none; }
            .about-hero { padding: 60px 15px 40px; }
            .about-hero h2 { font-size: clamp(2rem, 8vw, 3rem); }
            .cards-grid { grid-template-columns: 1fr; gap: 16px; }
            .team-grid { flex-direction: column; align-items: center; }
            .card { padding: 32px 24px; border-radius: 14px; }
            .card h3 { font-size: 1rem; margin-bottom: 10px; }
            .card p { font-size: 0.9rem; line-height: 1.7; }
            .avatar { width: 75px; height: 75px; }
            .team-card .name { font-size: 0.75rem; }
            .team-card .role { font-size: 0.65rem; }
            footer { padding: 20px; font-size: 0.8rem; }
        }

        @media (max-width: 480px) {
            .about-hero { padding: 50px 10px 30px; }
            .about-hero h2 { font-size: clamp(1.8rem, 9vw, 2.5rem); }
            .about-hero .subtitle { font-size: 0.9rem; }
            .stats-bar { margin-bottom: 50px; padding: 0 10px; }
            .stat { padding: 24px 15px; }
            .stat .num { font-size: 1.6rem; }
            .stat .lbl { font-size: 0.65rem; }
            .cards-section, .team-section { padding-left: 12px; padding-right: 12px; }
            .card { padding: 28px 20px; }
            .card h3 { font-size: 0.95rem; }
            .card p { font-size: 0.85rem; }
            .team-grid { gap: 20px; }
            .avatar { width: 70px; height: 70px; }
            .team-card .name { font-size: 0.7rem; }
            .team-card .role { font-size: 0.6rem; }
            footer { padding: 15px; font-size: 0.75rem; }
        }

        /* Mobile-specific enhancements */
        @media (max-width: 768px) {
            * {
                -webkit-tap-highlight-color: rgba(126, 203, 218, 0.2);
            }

            .card, .team-card, .stat {
                min-height: 44px;
            }

            .about-hero h2 span {
                display: inline-block;
            }
        }
