/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    background-color: #4CAF50;
    padding: 20px 0;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
}

nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    flex: 1;
    padding: 20px;
}

h1, h2 {
    color: #333;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 20px;
}

h2 {
    font-size: 2rem;
    margin-top: 30px;
}

/* About Section */
.about-section {
    padding: 20px;
    background-color: #fff;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    text-align: center;
}

.about-section p {
    margin: 15px 0;
    font-size: 1.2rem;
}

/* Team Section */
.team-section {
    background-color: #e7f3e8;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    text-align: center;
}

.team {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.team-member {
    margin: 20px;
    max-width: 250px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #4CAF50;
}

.team-member p {
    font-size: 1.1rem;
    color: #555;
}

/* Mission Section */
.mission-section {
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    text-align: center;
}

.mission-section p {
    font-size: 1.2rem;
}

/* Footer */
footer {
    text-align: center;
    background-color: #e7f3e8;
    color: black;
    padding: 10px;
    position: relative;
    width: 100%;
    bottom: 0;
    margin-top: auto;
}
footer a{
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline; /* Underline on hover for links */
}