/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d3436;
}

/* Team Grid */
.team-section {
    padding: 60px 20px;
    background-color: white;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.team-card {
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.member-photo {
    width: 100px;
    height: 100px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.team-card h3 {
    margin-bottom: 5px;
    color: #2d3436;
}

.team-card p {
    color: #636e72;
    font-size: 0.9rem;
}