<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* styles.css */

/* Reset some default browser styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

.header-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

header h1 {
    margin: 10px 0;
}

nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav ul li {
    margin: 10px 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

.hero-image {
    text-align: center;
    margin-bottom: 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

main {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 40px;
}

section h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 2em;
}

section h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #333;
}

section p, section ul {
    margin: 20px 0;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    text-align: center;
    margin-bottom: 10px;
}

.team-member p {
    text-align: center;
    max-width: 800px;
    margin-bottom: 20px;
}

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

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    margin: 5px 0;
    text-decoration: none;
}

.social-media, .address {
    margin: 10px 0;
}

footer p {
    margin: 0;
}

/* Media Queries for larger screens */
@media (min-width: 768px) {
    .header-container {
        flex-direction: row;
    }

    nav ul {
        flex-direction: row;
    }

    nav ul li {
        margin-left: 20px;
        margin-right: 0;
    }

    main {
        padding: 40px;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        flex-direction: row;
        margin-bottom: 0;
    }

    .footer-links a {
        margin: 0 10px;
    }

    .team-member p {
        text-align: left;
    }
}
</pre></body></html>