body {
        background-color: #121212; /* Very dark black/grey */
        padding: 40px;
        text-align: center;
        font-family: 'Segoe UI', sans-serif;
    }

    /* 2. Golden Heading */
    h1 {
        color: #D4AF37; /* Metallic Gold */
        font-weight: 300;
        margin-bottom: 40px;
        text-transform: uppercase;
        letter-spacing: 2px;
        border-bottom: 1px solid #333;
        display: inline-block;
        padding-bottom: 10px;
    }

    .image {
        width: 120px;
        margin-bottom: 20px;
    }

    /* 4. Grid Container */
    .people {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        
    }

    .card {
        background-color: #1E1E1E;
        height: 100px;
        border: 1px solid #333;
        border-radius: 8px;
        
        transition-duration: 3s;

        display: flex;
        justify-content: center;
        align-items: center;
        
        color: #D4AF37;
        font-size: 1.5rem;
        font-weight: bold;
        
        /* Premium Shadow */
        box-shadow: 0 4px 6px rgba(0,0,0,0.5);
        transition: all 0.3s ease;
        position: relative;
    }



    .card:hover {
        transform: translateY(-5px);
        border-color: #D4AF37; 
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); 
        background-color: #252525;
        cursor: pointer;
    }

    .cr1{
        transform: translateY(-5px);
        border-color: #D4AF37; 
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); 
        background-color: #252525;
        cursor: pointer;
    }