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

.container {
    background-color: #e5e5fd;
    border: 10px solid #1d1e4c;
    max-width: 900px;   /* fixed width hata ke max-width kiya */
    margin: 50px auto;
    padding: 20px;      /* thoda space andar add kiya */
}

.content {
    width: 100%;
}

.image_container img {
    width: 100%;       /* ab image container ke andar fit ho jayegi */
    max-width: 300px;  /* max size set kar diya */
    height: auto;      /* fixed height hatayi */
    border-radius: 50%; /* perfect circle look */
    display: block;
    margin: 0 auto;    /* center me lana */
}

.top_section {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;   /* responsive ke liye wrap add kiya */
    gap: 20px;
}

.top_section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1d1e4c;
    text-transform: uppercase;
}

.top_section h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1d1e4c;
    text-transform: uppercase;
    text-align: end;
}

.about_section {
    margin-top: 40px;
}

.about_section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about_section p {
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 1px;
    text-align: justify;
}

.biography_section {
    margin-top: 30px;
}

.biography_section h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

.biography_section li {
    margin-bottom: 10px;
    font-size: 1rem;
}

footer {
    margin: 40px 0;
}

footer p {
    text-align: end;
}
