/* Frame 37 */
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 50px;
    position: absolute;
    width: 1280px;
    height: 3056px;
    left: 0px;
    top: 0px;
}
.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 100px;
    width: 1070px;
    height: 374px;
    margin: 0 auto;
    position: relative;
    margin-top: 30px;
}

.about-image-container {
    width: 100%;
    max-width: 587px;
    height: auto;
    background: #FFFFFF;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.doctor-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


/* Frame 36 (Right side content) */
.about-right-side-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 15px;
    width: 383px;
    height: 280px;
}

/* Frame 35 (Title and Qualification) */
.about-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    width: 381px;
    height: 63px;
}

    /* Title */
    .about-title h2 {
        font-family: 'Arial', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 32px;
        line-height: 37px;
        color: #062A4D;
        margin: 0;
    }

/* Qualification */
.about-qualification {
    font-family: 'Arial', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #062A4D;
    margin: 0;
}

/* Description Paragraph */
.about-description {
    width: 383px;
    height: 144px;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #062A4D;
}
.frame-75 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 383px;
    height: 218px;
}

.education-title {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #062A4D;
}

.education-details {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #062A4D;
    white-space: pre-wrap;
}

/* Button */
.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 36px;
    width: 175px;
    height: 43px;
    background: #062A4D;
    border-radius: 5px;
    border: none;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
}
@media (max-width: 1100px) {
    .about-container {
        flex-direction: column;
        width: 90%;
        height: auto;
        gap: 50px;
    }

    .about-right-side-content {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .about-image-container {
        width: 100%;
        max-width: 500px; /* Or whatever fits nicely */
        height: auto;
    }

    .btn {
        margin-top: 10px;
    }
}
