body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #fff;
    border-bottom: 1px solid #ccc;
}

.logo {
    font-size: 24px;
    cursor: pointer;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 15px;
}

.who-we-are {
    display: flex;
    padding: 20px;
    align-items: center;
}

.who-we-are .image-placeholder {
    width: 400px;
    height: 400px;
    background: #ccc;
    margin-right: 20px;
}

.meet-our-team {
    text-align: center;
    padding: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    padding: 20px;
}

.team-member {
    text-align: center;
}

.team-member .image-placeholder {
    width: 100px;
    height: 100px;
    background: #ccc;
    margin: auto;
}

footer {
    background: #222;
    color: white;
    padding: 10px;
    text-align: center;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-icons .icon {
    width: 30px;
    height: 30px;
    background: #555;
}

