/* styles.css */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #0c1447;
    color: #333;
}

header {
    background-color: #0c1447;
    color: #fff;
    padding: 10px 20px;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 30px;
}

section h2 {
    font-size: 24px;
    border-bottom: 2px solid;
    padding-bottom: 5px;
    color: #fff;
}


.team-member {
    margin-bottom: 20px;
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 18px;
    color: #fff;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #0c1447;
    color: #fff;
}
