body {
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', serif;
  font-family: 'Poppins', sans-serif;
}

.outer-container {
  display: flex;
  width: 100%; 
  position: absolute;
}

.sidebar {
  width: 200px;
  background-color: #f0f0f0;
  overflow-y: auto;
  position: sticky;
  top: 110px;
  height: 100vh;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 10px;
}

a {
  text-decoration: none;
  cursor: pointer; /* Add this to show pointer cursor on hover */
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 12px 34px;
  font-size: 20px;
  font-weight: 600;
  background: #0e076d;
  position: relative;
  cursor: pointer;
  margin-left: 35px;
  list-style: none;
}

a:hover{
  border: 1px solid #0d0a35;
  background:#0d0a35;
  transition: 1s;
}

.inner-container {
  flex: 1;
  overflow-y: auto;
  width: 99%;
  background: #fcfcfc; 
}
.logo{
  width: 100%;
  height: 120px;
  background-image: url(images/sky4.jpg);
  background-color: #120f3a;
  padding-left: 20px;
  padding-right: 20px;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: fixed;
}
.logo img{
  width: 350px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  display: block;
  
}

.content {
  padding: 20px;
  width: 95%;
  text-align: justify; 
  background-color: #0e076d;
  color: #fff;
  margin-top: 125px;
  
}
.content h2{
  font-size: 22px;
  text-align: center;
}
.content h3{
  font-size: 16px;
  text-align: center;
}
.content p{
  font-size: 14px;
  font-family:  'Poppins', sans-serif;
  color: #fff;
  font-weight: 400;
  
}

.banner{
  background: #fff;
  width: 38%;
  padding: 0px;
  margin-top: 125px;
}
.banner div{
  width: 80%;
  height: 240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  display: block;
  background: #0e076d;
}

.banner div img{
  background: #fff;
  width: 95%;
  margin-left: 12px;
  margin-top: 10px;
  height: 220px;
}
.paypal{
  padding-left: 250px;
  margin-top: 50px;
  margin-bottom: 30px;
  background: #0e076d;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer{
  background: #fcfcfc;
  padding-bottom: 20px;
}

@media(max-width: 700px){
  .inner-container{
    display: block;
    flex: 1;
    overflow-y: auto;
    width: 100%;
    background: #fcfcfc;
  }
  .banner{
    display: none;
  }
  .sidebar {
    width: 100px;
  }
  a {
    padding: 6px 17px;
    font-size: 10px;
    margin-left: 16px;
  }
  .content {
    padding: 10px;
    width: 90%;
    text-align: justify;
    margin-right: 10px; 
    margin-top: 75px;
    overflow: hidden;
  }
  
  .content p{
    font-size: 14px;
    width: 98%;
  }
  
  
  .content h2{
    font-size: 18px;
    text-align: center;
  }
  .content h3{
    font-size: 16px;
    text-align: center;
  }
  .logo{
    width: 100%;
    height: 75px;
    background-color: #1d13a8;
    justify-content: center;
    z-index: 1;
    position: fixed;
  }
  .logo img{
    width: 50%;
    height: 60px;
    float: left;
  }
  .paypal{
    padding-left: 50px;
    margin-top: 50px;
    margin-bottom: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .sidebar {
    top: 75px;
    height: 100vh;
    padding-bottom: 0px;
  }
  
  
  

}

