/* Global Styles */
body {
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    color: #333;
}

main {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 20px;
}

section h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

section p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.team-member {
    margin-bottom: 20px;
}

.team-member img {
    max-width: 100px;
    border-radius: 50%;
    margin-right: 10px;
}

.team-member h3 {
    font-size: 1.5em;
    margin: 10px 0 5px;
}

blockquote {
    margin: 20px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 5px solid #ccc;
}

cite {
    display: block;
    margin-top: 5px;
    font-style: normal;
    color: #666;
}


