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

body {
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 5vh 2vw;
}

/* hero Section */
.hero {
    background: white;
    padding: 5vh 4vw;
    border-radius: 4vh;
    margin-bottom: 5vh;
    text-align: center;
}

.hero h1 {
    font-size: 4vh;
    color: #333;
    margin-bottom: 2vh;
}

.hero p {
    font-size: 2vh;
    color: #666;
    line-height: 3vh;
}

/* Team Section */
.team-section {
    background: white;
    padding: 5vh 4vw;
    border-radius: 4vh;
    margin-bottom: 5vh;
}

.team-section h2 {
    font-size: 3.5vh;
    color: #333;
    margin-bottom: 4vh;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25vw, 1fr));
    gap: 3vw;
}

.team-member {
    text-align: center;
    padding: 3vh 2vw;
    border-radius: 2vh;
    transition: transform 0.3s ease;
}

.team-member h3 {
    font-size: 2.5vh;
    color: #333;
    margin-bottom: 1vh;
}

.team-member p {
    font-size: 1.8vh;
    color: #666;
}