.bio-page-container {
    width: 80%;
    margin: 40px auto;
    max-width: 900px;
}
.bio-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Full width bio image */
.bio-full-image {
    width: 100%;
    margin-bottom: 30px;
}

.bio-full-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
}

/* Bio Layout */
.bio-content-wrapper {
    display: block;
    margin-bottom: 30px;
}

.bio-content-wrapper::after {
    content: "";
    clear: both;
    display: table;
}

.bio-image {
    float: right;
    width: 400px;
    margin-left: 30px;
    margin-bottom: 20px;
}

.bio-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bio-intro {
    display: block;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

/* Styling for bold, underlined, and links in Biography page */
.bio-intro b, .bio-intro strong,
.bio-intro u,
.bio-intro a,
.bio-intro i,
.bio-panel b, .bio-panel strong,
.bio-panel u,
.bio-panel i,
.bio-panel a {
    color: #0f790f; /* Light Green */
}

.bio-intro a,
.bio-panel a {
    font-weight: 700;
    transition: color 0.3s ease;
    text-decoration: none;
}

.bio-intro u, .bio-panel u {
    text-decoration: underline;
}

.bio-intro a:hover,
.bio-panel a:hover {
    color: #90ee90; /* MediumSeaGreen - Slightly lighter */
    cursor: pointer;
}

/* Accordion */
.bio-accordion {
    background-color: var(--primary);
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin: 20px 0;
    font-weight: 600;
}

.bio-accordion.active, .bio-accordion:hover {
    background-color: var(--primary-dark);
}

.bio-panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.bio-panel p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

/* Responsive Biography */
@media (max-width: 800px) {
    .bio-page-container {
        width: 90%;
    }
    
    .bio-image {
        float: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 30px;
        display: block;
    }
    
    .bio-intro, .bio-title {
        text-align: left;
    }
}
