/* *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.container{
    background-color: #e5e5fd;
    min-height: 100vh;
    border: 10px solid #1e1e4c;
}
.content{
    max-width: 900px;
    margin: 0 auto;
}
.img_section,img{
    height: 320px;
    width: 300px;
    border-radius: 60%;
}
.top_section{
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    align-items: flex-end;
}
.top_section h1{
    font-size: 60px;
    font-weight: bold;
    color: #1e1e5e;
}
.top_section h4{
    font-size: 25px;   
    text-align: end;
}
.about_section{
    margin: 50px;
}
.about_section h2{
    font-size: 70px;
    font-weight: 400;
}
.about_section p{
    margin-top: 20px;
    font-size: 20px;
    letter-spacing: 1.4px;
    text-align: justify;
}
.biography_section{
    margin-left: 40px;
}
.biography_section h3,li{
    margin-bottom: 20px;
}
.biography_section ul{
    margin-left: 50px;
}
.footer_section{
    display: flex;
    justify-content: flex-end;
    align-items: end;
}
.footer_section p{
    margin: 50px 0;
} */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    background-color: #e5e5fd;
    min-height: 100vh;
    border: 10px solid #1e1e4c;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.img_section, img {
    height: 320px;
    width: 300px;
    border-radius: 60%;
}

.top_section {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.top_section h1 {
    font-size: 60px;
    font-weight: bold;
    color: #1e1e5e;
}

.top_section h4 {
    font-size: 25px;
    text-align: end;
}

.about_section {
    margin: 50px;
}

.about_section h2 {
    font-size: 70px;
    font-weight: 400;
}

.about_section p {
    margin-top: 20px;
    font-size: 20px;
    letter-spacing: 1.4px;
    text-align: justify;
}

.biography_section {
    margin-left: 40px;
}

.biography_section h3,
.biography_section li {
    margin-bottom: 20px;
}

.biography_section ul {
    margin-left: 50px;
}

.footer_section {
    display: flex;
    justify-content: flex-end;
    align-items: end;
}

.footer_section p {
    margin: 50px 0;
}

/* 🌐 Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .top_section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 50px;
    }

    .img_section, img {
        height: 220px;
        width: 220px;
        margin-bottom: 20px;
    }

    .top_section h1 {
        font-size: 40px;
    }

    .top_section h4 {
        font-size: 18px;
        text-align: center;
    }

    .about_section {
        margin: 30px 20px;
    }

    .about_section h2 {
        font-size: 40px;
        text-align: center;
    }

    .about_section p {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .biography_section {
        margin: 20px;
    }

    .biography_section ul {
        margin-left: 20px;
    }

    .footer_section {
        justify-content: center;
        align-items: center;
    }

    .footer_section p {
        margin: 30px 0;
        font-size: 14px;
    }
}
