    :root {
        --gold: #ffc107;
        --dark-bg: #0a0a0a;
        --card-bg: #141414;
    }

    body {
        background-color: var(--dark-bg);
        color: #fff;
        font-family: 'Inter', sans-serif;
    }

    /* Custom Select & Radio Styling */
    .custom-select {
        background-color: var(--card-bg) !important;
        border: 1px solid rgba(255, 193, 7, 0.3) !important;
        color: #fff !important;
        border-radius: 50px !important;
        padding: 10px 20px !important;
    }

    .custom-radio-btn {
        border: 1px solid var(--gold) !important;
        background: transparent;
        color: #fff !important;
        border-radius: 50px !important;
        padding: 8px 25px !important;
        transition: 0.3s;
        font-weight: 500;
        font-size: 0.9rem;
    }

    .btn-check:checked+.custom-radio-btn {
        background-color: var(--gold) !important;
        color: #000 !important;
        box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
    }

    /* Profile Card Styling */
    .profile-card {
        background: var(--card-bg) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-radius: 20px !important;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
    }

    .profile-card:hover {
        transform: translateY(-10px);
        border-color: var(--gold) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .card-img-wrapper {
        position: relative;
        overflow: hidden;
        height: 300px;
    }

    .card-img-top {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .profile-card:hover .card-img-top {
        transform: scale(1.1);
    }

    .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to top, var(--card-bg) 10%, transparent 100%);
    }

    .member-name {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .member-position {
        color: var(--gold);
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 2px;
        font-weight: 600;
    }

    /* Section Headers */
    .section-divider {
        width: 60px;
        height: 3px;
        background: var(--gold);
        margin: 20px auto;
    }

    .dept-title {
        font-family: 'Playfair Display', serif;
        font-weight: 800;
        font-size: 2.5rem;
    }