body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333333;
    margin: 0;
    padding: 0;
}

header {
    width: 100%;
    background-color: #ffffff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header img {
    width: 20vw;
    max-width: 200px;
    min-width: 100px;
    height: auto;
    margin-right: 20px;
}

nav {
    display: flex;
    gap: 15px;
    flex-grow: 1;
    justify-content: flex-start;
}

nav a {
    color: #555555;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    text-decoration: underline;
}

nav a.hide {
    display: none;
}

.content {
    max-width: 800px;
    padding: 140px 20px 20px;
    margin: 0 auto;
    background-color: #ffffff;
    text-align: left;
}

h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.subtitle {
    font-style: italic;
    font-weight: normal;
    color: darkgray;
    text-align: center;
    margin-bottom: 40px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
}

h2 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
    color: #333333;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.team-member {
    width: 45%;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-member h2 {
    font-size: 1.5em;
    margin-bottom: 5px;
    color: #333333;
}

.team-member p {
    font-size: 1em;
    color: #666666;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #f8f8f8;
}

footer a {
    color: #555555;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin-top: 10px;
    color: #555555;
}

@media (max-width: 600px) {
    .content {
        padding: 120px 10px 10px;
    }

    .team-member {
        width: 100%;
    }

    p, nav a {
        font-size: 14px;
    }

    header img {
        width: 30vw;
        max-width: 150px;
    }
}