/* Main Executive Container */
.executive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    padding-top: 69px;
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Profile Section */
.profile-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Profile Image and Overlay */
.profile-image {
    position: relative;
    width: 400px;
    height: 500px;
}

    .profile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.executive-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: left;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

    .executive-info-overlay h2 {
        font-size: 1.8em;
        font-weight: 700;
        margin: 0;
    }

    .executive-info-overlay .title {
        font-size: 1.1em;
        font-weight: 500;
        margin-top: 5px;
    }

/* Bio Content Section */
.bio-content {
    max-width: 700px;
    padding-left: 20px;
}

    .bio-content h1 {
        font-size: 2em;
        color: #0b3954;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .bio-content p {
        font-size: 1.1em;
        color: #333;
        line-height: 1.6;
    }


.executive-container h1,
.executive-container h2,
.executive-container .title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* mobile pic fixes */
@media screen and (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-image {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

        .profile-image img {
            width: 100%;
            height: auto;
        }

    .bio-content {
        padding-left: 0;
        max-width: 100%;
    }

        .bio-content h1 {
            font-size: 1.8em;
            margin-top: 20px;
        }
}
