/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #f5f5f5;
}

/* Header */
header {
    background: #b8860b;
    color: white;
    padding: 40px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

/* About Section */
.about {
    background: white;
    padding: 50px 20px;
}

.about .container {
    margin: auto;
    text-align: justify;
}

/* Team Section */
.team {
    background: #e3e3e3;
    padding: 50px 20px;
}

.team h2 {
    font-size: 2em;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}

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

/* Footer */
footer {
    background: #b8860b;
    color: white;
    padding: 15px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }
}
