.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}


h1 {
    font-size: 2.5rem;
    color: #15803d;
    margin-bottom: 1rem;
    text-align: center;
}

.subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    font-size: 2rem;
    font-weight: 600;
    color: #15803d;
    margin-bottom: 0.5rem;
    text-align: center;
}

.member-position {
    font-size: 1.5rem;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.member-description {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #2d3748;
}

