.overlay {
    position: fixed;
    top: -80%;
    left: 0;
    width: 100%;
    height: 200%;
    background-color: rgba(0, 14, 32, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; 
  }
  
  .modal {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    margin: 40px auto;
    z-index: 1000; 
  }
  .close {
    position: relative;
    left: 1.5vh;
    top: -3vh;
    cursor: pointer;
    font-size: 36px;
    z-index: 1000; 
  }
  .close:hover {
    color: #ff0000;
    z-index: 1000; 
  }
  
  .modal-header {
    background-color: #ffffff;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .modal-title {
    font-size: 36px;
    font-weight: 600;
  }
  
  .modal-text {
    font-size: 22px;
    font-weight: 400;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 2%;
    word-spacing: 0.1vh;
    line-height: 130%;
  }

  @media screen and (max-width: 1366px) {
    .overlay {
      position: fixed;
      top: -77%;
      left: 0;
      width: 100%;
      height: 200%;
      background-color: rgba(0, 14, 32, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000; 
    }
  }