/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #F4F4F9; /* Light grey background */
}

header {
    background-color: #2E8B57; /* Dark Green */
    color: white;
    text-align: center;
    padding: 50px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0;
}

main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-content {
    text-align: left;
    line-height: 1.7;
    font-size: 18px;
    color: #333;
}

.about-content p {
    font-size: 16px;
    color: #666;
}

.team-member h2 {
    color: #2E8B57;
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}

.team-member p {
    margin-bottom: 30px;
}

.team {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.member {
    flex: 1;
    background-color: #F4F4F9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.member h3 {
    font-size: 26px;
    color: #2E8B57;
    margin-bottom: 10px;
}

.member .role {
    font-size: 18px;
    color: #2E8B57;
    font-weight: bold;
    margin-bottom: 15px;
}

.member .description {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.mission, .vision {
    margin-top: 50px;
}

.mission h2, .vision h2 {
    color: #2E8B57;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

footer {
    background-color: #2E8B57;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

footer p {
    margin: 0;
}

/* Responsive Layout for Smaller Screens */
@media (max-width: 768px) {
    .team {
        flex-direction: column;
        align-items: center;
    }

    .member {
        margin-bottom: 30px;
    }
}
