body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #E6E1DE ;
    color: #333;
}

.header {
    width: 100%;
    height: 600px;
    background: url('Group 2262.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}


.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.content {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 100px auto 50px;
    max-width: 1000px;
    border-radius: 10px;
}
.content h2 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    font-family: "Great Vibes", system-ui;
}
.content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: "Oleo Script", system-ui;
}
.team {
    background-color: #f5f5f5;
    padding: 50px 20px;
}
.team h2 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    font-family: "Great Vibes", system-ui;
    text-align: center;
}
.team p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-family: "Oleo Script", system-ui;
}
.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.team-member {
    width: 300px;
    margin: 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.team-member img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.team-member h3 {
    font-size: 20px;
    margin: 10px 0 5px;
    color: #333;
}
.team-member p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}
.team-member .social-icons {
    margin-top: 10px;
}
.team-member .social-icons a {
    color: #333;
    margin: 0 5px;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.team-member .social-icons a:hover {
    color: #007bff;
}