/* Biography Page Styles */
* {
    box-sizing: border-box;
}
/* Container */
.container {
    margin: 0 auto;
    padding: 20px;
    max-width: 800px;
}

/* Page Title */
.page-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

/* Profile and Intro Section */
.profile-intro {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    flex-direction: row-reverse; /* To align picture on the right side */
}

/* Profile Picture */
.profile-picture img {
    width: 150px; /* Adjust width as needed */
    height: auto;
    border-radius: 15px; /* Rounded corners */
    border: 2px solid #a0522d; /* Border color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Intro Text */
.intro-text {
    flex: 1;
    text-align: right;
}

/* Section Headings */
.section-heading {
    font-size: 1.8em;
    font-weight: bold;
    color: #a0522d;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #a0522d;
    padding-bottom: 10px;
}

/* Biography Content */
.biography-content p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #2c3e50;
    text-align: right;
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .profile-intro {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-picture img {
        width: 60%; /* Adjust for smaller screens */
        max-width: 200px;
        margin-bottom: 20px;
    }

    .intro-text {
        text-align: right;
    }
}
