/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f9;
}

header {
    background-color: #4caf50;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

section {
    padding: 2rem;
    text-align: center;
}

button {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* Partners section */
.partners img {
    width: 150px;
    margin: 0.5rem;
    border-radius: 8px;
}

/* Team section */
.team-members {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-members .member {
    text-align: center;
}

.team-members img {
    width: 100px;
    border-radius: 50%;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    padding: 1rem;
}
footer a {
    color: #4ea0e4;
    text-decoration: none;
}

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