.team-section {
    padding: 120px 40px;
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.team-section h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 10px;
    color: #fff;
}

.team-section p.subtitle {
    text-align: center;
    color: #b8b8b8;
    margin-bottom: 60px;
    font-size: 16px;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.team-row {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6c2b80, #1b0b20);
    border: 1px solid rgb(225, 0, 255);
    backdrop-filter: blur(10px);
    transition: 0.25s ease;
}

.team-row:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.18);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.team-role {
    font-size: 15px;
    color: #b8b8b8;
    margin-top: 2px;
}

.team-bio {
    margin-top: 10px;
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.5;
    max-width: 700px;
}

@media (max-width: 700px) {
    .team-row {
        flex-direction: column;
        text-align: center;
    }

    .team-info {
        text-align: center;
    }
}