/* Reset some basic elements for better cross-browser consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #444;
    margin-bottom: 20px;
}

.intro, .mission, .team, .contact {
    margin-bottom: 40px;
}

.intro p, .mission p, .contact p {
    font-size: 16px;
    line-height: 1.6;
}

.team {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: #555;
}

.team-member p {
    font-size: 14px;
    color: #666;
}
.navbar-spacing {
    height: 130px;
    width: 100%;
}
