body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(OIP.WEBP);
    background-size: cover;
    background-repeat: no-repeat;
    animation: bg-scroll 30s linear infinite;
}
@keyframes bg-scroll {
    0% { background-position: 0% center; }
    100% { background-position: 100% center; }
}
header {
    background: rgba(76, 209, 209, 0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #053b73;
    text-decoration: none;
    letter-spacing: 1px;
}
.navbar ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar ul li a {
    color: #053b73;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.navbar ul li a:hover,
.navbar ul li a.active {
    background: #053b73;
    color: #fff;
}
main {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 20px 40px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
section {
    margin-bottom: 40px;
}
.about h2, .team h2, .mission h2 {
    color: #053b73;
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 700;
}
.about p, .mission p {
    font-size: 1.15rem;
    color: #222;
    line-height: 1.7;
    margin-top: 0;
}
.team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
}
.team-card {
    background-color: #1B98E040;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(76,209,209,0.11);
    padding: 30px 22px 22px 22px;
    text-align: center;
    max-width: 220px;
    flex: 1 1 220px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(76,209,209,0.15);
}
.team-card img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #053b73;
}
.team-card h3 {
    margin: 8px 0 4px 0;
    color: #053b73;
    font-size: 1.18rem;
}
.team-card p {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1rem;
}
.team-card .social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}
.team-card .social img {
    width: 28px;
    height: 28px;
    filter: grayscale(0.3);
    transition: filter 0.2s;
}
.team-card .social img:hover {
    filter: grayscale(0) drop-shadow(0 0 4px #4dd1d1);
}
footer {
    background: #053b73;
    color: #fff;
    padding: 14px 0;
    text-align: center;
    font-size: 1rem;
    margin-top: 40px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
@media (max-width: 700px) {
    main {
        flex-direction: column;
        max-width: 98vw;
        margin: 10px auto 0 auto;
        border-radius: 8px;
        padding: 8px 4vw 24px 4vw;
    }
    .team-cards {
        flex-direction: column;
        align-items: center;
    }
    .navbar ul {
        gap: 13px;
    }
}
