body {
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', serif;
  font-family: 'Poppins', sans-serif;
  background: #0d0a35
  
}

.outer-container {
  display: flex;
  width: 100%; 
  position: absolute;
}

.sidebar {
  width: 270px;
  background-color: #f0f0f0;
  overflow-y: auto;
  position: sticky;
  top: 120px;
  height: 100vh;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 5px;
}

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: 6px 17px;
  font-size: 20px;
  font-weight: 600;
  background: #f31d1d;
  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/lov.jpg);
  background-color: #f31d1d;
  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: 100%;
  text-align: justify; 
  background-color: #f31d1d;
  color: #fff;
  margin-top: 125px;
  
}
.content h1{
  font-size: 30px;
  text-align: center;
}
.content h2{
  font-size: 22px;
  text-align: center;
}
.content h3{
  font-size: 16px;
  text-align: center;
}
.content h4{
  font-size: 16px;
  text-align: center;
  width: 98%;
}
.content p{
  font-size: 14px;
  font-family:  'Poppins', sans-serif;
  color: #fff;
  font-weight: 400;
  width: 95%;
}

.banner{
  background: #fff;
  width: 30%;
  padding: 0px;
  margin-top: 125px;
}
.banner div{
  width: 80%;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  display: block;
  background: #f31d1d;
}

.banner div img{
  background: #fff;
  width: 95%;
  margin-left: 12px;
  margin-top: 10px;
  height: 180px;
}
.paypal{
  margin-left: 250px;
  margin-top: 50px;
  margin-bottom: 30px;
}
.box{
  width: 100%;
  height: 50vh;
  margin: 0;
  background: #f31d1d;
  
}

.box h2{
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  padding-top: 20px;
}
.years{
  width: 100%;
  height: 90vh;
  background: #0d0a35;
  padding-left: 5px;
  padding-top: 2px;
  
}
.button{
  display: flex;
  margin: 15px;
}
.button a{
    margin-bottom: 5px;
    width: 50px;
    padding: 6px 6px 6px 12px;
    font-size: 16px;
  }

@media(max-width: 700px){
  .inner-container{
    display: block;
  }
  .banner{
    display: none;
  }
  .sidebar {
    width: 130px;
  }
  a {
    padding: 5px 8px;
    font-size: 10px;
    margin-left: 16px;
  }
  .content {
    padding: 10px;
    width: 100%;
    text-align: justify;
    margin-right: 10px; 
    margin-top: 80px;
    overflow: hidden;
    
  }
  .inner-container {
    flex: 1;
    overflow-y: auto;
    width: 100%;
    background: #fcfcfc;
  }
  .content p{
    font-size: 14px;
    width: 92%;
  }
  .content h1{
    font-size: 20px;
    text-align: center;
  }
  .content h2{
    font-size: 18px;
    text-align: center;
  }
  .content h3{
    font-size: 16px;
    text-align: center;
    width: 95%;
  }
  .content h4{
    font-size: 16px;
    text-align: center;
    width: 95%;
  }
  .logo{
    width: 100%;
    height: 75px;
    background-color: #f31d1d;
    justify-content: center;
    z-index: 1;
    position: fixed;
  }
  .logo img{
    width: 50%;
    height: 60px;
    float: left;
  }
  .paypal{
    margin-left: 50px;
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .sidebar {
    top: 75px;
    height: 100vh;
    padding-bottom: 0px;
  }
  .box h2{
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding-top: 20px;
  }
  .years{
    padding-left: 10px;
    padding-top: 2px;
    height: auto;
  }
  .button{
    display: block;
  }
  .button a{
    margin-bottom: 20px;
    width: 50px;
    padding: 3px 12px 3px 20px;
    font-size: 16px;
  }
  
}

