.hero-section {
    position: relative;
    width: 100%;
    background: none;
    background-image: url('../Images/Team/George-Steel-Hero-IMG.svg');
    background-size: cover;
    background-position: center;
    padding: 22rem 0;
    text-align: center;
    font-size: 2rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.team-member-profile {
    width: 100vw;
    min-height: 100vh;
    height: auto;
    box-sizing: border-box;
    margin: 0;
    background: #01270ed9;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 2.5rem 2rem;
    color: #fff;
    font-family: 'Crimson Text', serif;
    opacity: 1;
    transform: none;
    animation: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.team-member-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.2em;
    letter-spacing: 0.04em;
    color: #ffe7a0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.team-member-header p {
    font-size: 1.25rem;
    color: #ab8d44;
    margin-bottom: 1.5em;
    font-weight: 600;
    letter-spacing: 0.05em;
}

@keyframes fadeInUpProfile {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-member-content {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

.team-member-photo {
    width: 220px;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 24px #ab8d44a0;
    opacity: 1;
    transform: none;
    animation: none;
    background: #222;
}

@keyframes fadeInPhoto {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.team-member-bio {
    flex: 1;
    opacity: 1;
    transform: none;
    animation: none;
    max-width: 600px;
}

@keyframes fadeInBio {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-member-bio p {
    font-size: 1.18rem;
    line-height: 1.7;
    margin-bottom: 1.1em;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.team-member-bio strong {
    color: #ffe7a0;
    font-weight: 600;
}

.team-member-bio a {
    color: #ab8d44;
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-member-bio a:hover {
    color: #ffe7a0;
}

.team-member-photo-container {
    position: relative;
    display: inline-block;
}

@media (max-width: 700px) {
    .team-member-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .team-member-profile {
        padding: 1.2rem 0.5rem;
    }
    .team-member-photo {
        width: 90vw;
        max-width: 320px;
        height: auto;
    }
}
