.header {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-left: 6rem;
    padding-bottom: 0;
    overflow: hidden;
}

.header > h1 {
    margin-bottom: 0;
}

.header > p {
    padding-left: 1rem;
    max-width: fit-content;
    z-index: 3;
    background-color: rgba(232, 232, 232, 0.65);
}

.team-content {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    background-color: var(--background);
}

.team-section {
    margin-bottom: 4rem;
}

.team-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--accent);
}

.members-grid {
    gap: 2rem;
}

.member {
    text-align: center;
    margin-bottom: 3rem;
}

.member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.member-info h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: #333;
}

.member-info .role {
    font-style: italic;
    color: #666;
    margin: 0.3rem 0 1rem 0;
}

.member-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.5rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--accent);
    font-size: 1.3rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--secondary);
}

.alumni-list {
    list-style-type: disc;
    padding-left: 2rem;
    margin-top: 2rem;
}

.alumni-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .header {
        padding: 3rem 2rem 0 2rem;
    }
    .header > h1 {
        font-size: larger;
    }
    .header > p {
        font-size: small;
        padding-left: 0;
    }
    
    .team-content {
        font-size: small;
        padding: 0rem 2rem 0 2rem;
    }
    
    .member img {
        width: 150px;
        height: 150px;
    }
    
    .team-section h2 {
        font-size: 1.4rem;
    }
    
    .social-links a {
        font-size: 1.1rem;
    }
}
