/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 20px;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

header img {
    width: 100%;  /* Stretch the image to cover the header width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove any extra space below the image */
}

/* Larger screens */
@media (min-width: 1024px) {
    header img {
        height: 500px; /* Fixed height for larger screens */
    }
}

/* Medium screens */
@media (min-width: 768px) and (max-width: 1023px) {
    header img {
        height: 350px; /* Reduced height for medium screens */
    }
}

/* Smaller screens */
@media (max-width: 767px) {
    header img {
        height: 200px; /* Further reduced height for small screens */
    }
}

section {
    margin-top: 20px;
    padding: 20px;
    background: white;
    border: 1px solid #ccc;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.team-member {
    margin-bottom: 20px;
}

.team-member h3 {
    color: #333;
}

.team-member p {
    margin-top: 5px;
}

a {
    color: #006;
}

