/* css/team.css */
:root { --primary-color: #00509E; --secondary-color: #FF7F11; --light-gray: #f8f9fa; --dark-text: #333; }
body { background-color: var(--light-gray); font-family: 'DM Sans', sans-serif; }
.site-footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 20px 0;
    margin-top: auto; /* Pushes footer to the bottom */
}

.site-footer a {
    color: var(--light-text);
    text-decoration: underline;
}
.page-container { padding: 4rem 0; }
.page-header { text-align: center; margin-bottom: 3rem; color: var(--primary-color); }
.team-member-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-member-card:hover { transform: translateY(-10px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.team-member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--primary-color);
}
.team-member-card h4 { color: var(--primary-color); font-weight: 700; }
.team-member-card .role { color: var(--secondary-color); font-weight: 500; margin-bottom: 1rem; }