/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header */
header {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Team Section */
.team-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

/* Team List */
.team-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-member {
    display: flex;
    align-items: center;
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.team-member:hover {
    transform: translateY(-3px);
}

/* Image Styling */
.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

/* Team Info */
.team-info h2 {
    font-size: 1.4em;
    color: #333;
    margin: 5px 0;
}

.team-info p {
    font-size: 1em;
    color: #666;
    margin: 2px 0;
}

/* Social Media Links */
.social-links {
    margin-top: 10px;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2em;
    color: #2c3e50;
    transition: color 0.3s ease-in-out;
}

.social-links a:hover {
    color: #3498db;
}
