body {
   font-family: 'Montserrat', sans-serif;
    width:414px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    
    
   
}

.header-semicircle {
    width: 400px; 
    height: 50px; 
    background-color: white; 
    border-bottom-left-radius: 150px; 
    border-bottom-right-radius: 150px; 
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-top: 10px; 
  }


  .header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 40px; 
      font-weight:700;
}

.back-button {
    text-decoration: none;
    color: black;
    margin-right: 10px;
}

.image-container {
    position: absolute;
margin-left: 165px; 
    margin-right: -250px; 
   
    transform: translateX(-50%);
    background-color: #FFDEAD;
    width:400px;
    
    z-index: -1;
    height: 400px;

  }
  
  .image-container img {
    width: 100px; 
    height: 100px; 
    margin-left: 29px;
    margin-top: 120px;
  }

  .upside-down-semicircle {
    width: 410px; 
    height: 400px; 
    background-color: white; 
   margin-top: 160px;
    border-top-left-radius: 60px; 
    border-top-right-radius: 60px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    
  }

  .payment-container {
    width: 80%; 
    margin: 20px auto; 
    margin-top: 80px;
    border-radius: 30px;
    height: 70px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFBF00 ;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
.payment-container p{
    margin-right: 10px;
     
}
  
  .pay-now-button {
    padding: 10px 20px;
    background-color: white;
    color: #000;
    border: none;
    border-radius: 25px;
    width: 120px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    margin-left: 10px;
  }
  
  
  .total-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 414px;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    
}

.modal-content {
   
    margin: 15% auto;
    margin-top: 70px;
    width: 80%;
    max-width: 310px;
    align-items: center; 
    justify-content: center;
    position: relative;
}
.container-inside-modal {
    background-color: #FFBB44;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start; 
    
    
    margin-top: 20px;
   
}
.container-inside-modal p {
    
    margin-left: 20px;
    font-size: 60px;
    font-style: italic;
  margin-top: -30px;
    font-weight: 200;
}

.pay-now {
    text-align: center;
    background-color:#FFDEAD; 
    padding: 20px; 
    margin-top: 50px; 
    border-radius: 30px;
    width:100px;
    color: white;
    margin-left: auto;
    margin-right: auto;
    font-size:20px;
   
}

.green-tick {
    color: #56CE56;
    padding-right: 20px;
    padding-top: 10px;
    border-radius: 35px;
    padding-left: 20px;
    height: 60px;
    border-color: #FDFDFD;
    border-top-color: rgb(253, 253, 253);
    border-right-color: rgb(253, 253, 253);
    border-bottom-color: rgb(253, 253, 253);
    border-left-color: rgb(253, 253, 253);
    background-color: #FDFDFD;
    display: flex;
    margin-top: 0px;
    font-size: 40px;

}



.footer-nav{
    width: 370px;
    font-size: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 5px solid #FFAA33; 
    margin-top: 30px;
    padding: 15px;
    

  }
  .footer-nav a {
    text-decoration: none;
    color: grey; 
}