    /* About Me Section */
    .profile_container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5%;
        margin: 80px 10%; /* Space above and below section */
    }

    .profile_image img {
        width: 450px;
        height: 350px;
        border-radius: 10px;
    }

    .profile_name {
        margin-bottom: 20px;
    }

    .profile_info p {
        margin-bottom: 10px;
        line-height: 1.6;
    }




    /* Services + book now button*/
    .buttons_container {
        display: flex;
        gap: 50px; 
        margin: 30px 0; 
        
    }

    .book_appoint_container {
        z-index: 10;
    }

    .book_appoint_container:hover {
        transform: translateY(1px);
    }


    /*Services button*/
    .learn_more_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }
    .learn_more_btn a {
        color:#2E5668;
        font-size: 1.2rem;
    } 

    .learn_more_btn:hover {
        transform: translateY(1px);
    }

    .arrow_icon_blue {
        width: 35px;
        height: 25px;

    }

    /*****************Education Section**************/

    #history {
        position: relative;
       
    }

    .background_waves_container img {
        z-index: -1;
        width: 100%;
        
    }

    .education_expertise_container {
        display: flex;
        position: absolute;
        top: 35%;
        left: 10%;
        
        gap: 10%;
        width: 80%;
        z-index: 1;
    }
   
    .education_title, .expertise_title {
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    .education_container {
        flex-grow: 1;
    }

    .education_text p {
        margin-bottom: 10px;
        font-size: 1.2rem;
        line-height: 1.6;
    }
    .book_appointment {
        display: flex; 
        justify-content: center;
    }

    /*****Expertise Section*******/

    .expertise_elements {
        display: flex;
        gap: 4%; 
        line-height: 1.6;

    }

    .expertise_elements ul {
        font-size: 1.2rem;
    }

    /*flex: grow shrink basis
        grow = default = 0 = no grow
             = controls remaining space 
             = bigger = bigger
        shrink = default = 1 = shrink equally 
               = controls how items reduce when 
                 the container is too small 
               = bigger = shrinks faster
        basis = defines the item's initial width or height 
              = (px, %, rem, auto)
              = 0 = share space equally 
    */
.education_container {
  flex: 1 1 0; /* smaller share */ /*1 = 25%*/
}

.expertise_container {
  flex: 2 1 0; /* larger share */ /* 3= 75%*/
}

.expertise_elements ul {
    padding:0;
}
 /* book now*/

 .book_appointment:hover {
    transform: translateY(1px);
 }

 .book_appointment{
    margin-bottom: 10%;
 }


 /*****mediaqueries*******/

 @media screen and (max-width: 1200px) {
    .education_text {
        font-size: 1rem;
    }
 }

 @media screen and (max-width:1000px) {
     .profile_container {
        display: flex;
        flex-direction: column;
    }
   
    #history {
        height: 1200px;
    }
    .background_waves_container img{
        height: 1220px;
    }


    .education_expertise_container {
        display:block;
        margin-top: -10%;
    }

    .education_container {
        margin-bottom: 40px;
    }
 
 }

 @media screen and (max-width: 600px) {
    .expertise_elements {
        display:block;
    }

    #history {
        height: 1600px;
        margin-top: -50%;
    }

    .background_waves_container img{
        margin-top: 20%;
        height: 1800px;
        width: 250%;
    
    }

    .education_expertise_container {
        display:block;
        margin-top: -30%;
    }

   

 }