:root {
    --primary-color: #28bf96;
    --primary-color-dark: #209677;
    --text-dark: #111827;
    --text-light: #6b7280;
    --white: #ffffff;
}

body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}



header ul li {
    margin-left: 100px;
}

main.container {
    padding: 2.5rem;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.team-member {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #ddd;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.team-member img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 1rem;
}

.team-member h3 {
    margin: 0.5rem 0;
}

.team-member p {
    margin: 0;
    color: #555;
}

.team-member a {
    padding: 2px;
    color: var(--primary-color-dark);
    text-decoration: none;
}

.team-member a:hover {
    text-decoration: underline;
}
