:root {
            --deep-blue: #0a2e4a;
            --blue: #0a4b78;
            --green: #2ecc71;
            --accent-green: #27ae60;
            --red: #e63946;
            --white: #ffffff;
            --light: #f8fafc;
            --text: #1e293b;
            --text-light: #475569;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f2f6fb;
            color: var(--text);
            line-height: 1.6;
        }

        /* Hero */
        .trustees-hero {
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--blue) 100%);
            padding: 60px 24px;
            text-align: center;
            color: white;
            position: relative;
        }
        .trustees-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #e63946 0%, #e63946 33%, #27ae60 33%, #27ae60 66%, #1b6b9e 66%, #1b6b9e 100%);
        }
        .trustees-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
        }
        .trustees-hero h1 span {
            color: var(--green);
        }
        .trustees-hero p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 10px auto 0;
        }

        /* Content */
        .trustees-container {
            max-width: 1100px;
            margin: -30px auto 50px;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        /* Grid for trustee cards */
        .trustees-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
        }
        .trustee-card {
            background: white;
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            border-top: 5px solid var(--accent-green);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .trustee-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.1);
        }
        .trustee-role {
            display: inline-block;
            background: #f0fdf4;
            color: var(--accent-green);
            font-weight: 700;
            font-size: 0.8rem;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 14px;
            width: fit-content;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .trustee-card h3 {
            font-size: 1.3rem;
            color: var(--deep-blue);
            margin-bottom: 6px;
        }
        .trustee-affiliation {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .trustee-location {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #64748b;
            font-size: 0.85rem;
            margin-top: auto;
            padding-top: 14px;
            border-top: 1px solid #e2e8f0;
        }
        .trustee-location i {
            color: var(--red);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 700px) {
            .trustees-hero h1 {
                font-size: 2rem;
            }
            .trustees-grid {
                grid-template-columns: 1fr;
            }
        }