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


body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}


header {
    background-color: #ff8ec7;
    padding: 20px;
    color: white;
    text-align: center;
}

header .logo h1 {
    font-size: 2.5rem;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #f7b6d2;
}


main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


#about {
    margin-bottom: 40px;
}

#about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff8ec7;
}

#about h3 {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #ff8ec7;
}

#about p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}


#team {
    margin-top: 40px;
}

#team h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff8ec7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.team-member {
    background-color: #f7f7f7;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.team-member p {
    color: #777;
    font-size: 1rem;
}


footer {
    background-color: #f3a1c7;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 1rem;
}


@media screen and (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    #about h2 {
        font-size: 1.5rem;
    }

    #about h3 {
        font-size: 1.3rem;
    }

    .team-member h4 {
        font-size: 1.2rem;
    }
}
