 
 body{
  background-color: #090909;
 }
 main{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: #090909;
}
   main .faq h1{
    text-align: center;
    margin-top: 150px;
    margin-bottom: 50px;
    font-family: 'tusker';
    color: #fff;
    letter-spacing: 0.2rem;
    font-size: clamp(2.5rem,7rem,10vw);
    user-select: none;
   }
   .container {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      max-width: 1440px;
      width: 95%;
      gap: 30px;
      height: auto;
      margin: 0 auto;
    }

    .sidebar {
      width: 95%;
      max-width: 320px;
      background: #fff;
      border-radius: 6px;
      padding: 20px;
      height: fit-content;
      position: sticky;
      top: 50px;
      color: #fff;
      background: rgba(36, 36, 36, 0.25);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(12.9px);
-webkit-backdrop-filter: blur(12.9px);
  overflow: hidden; 
}

.sidebar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; 
  width: 0;
  height: 2px;
  background-color: #e73c45;
  border-bottom-left-radius: 7.5px;  
  border-bottom-right-radius: 7.5px;
  transition: width 0.4s ease-in-out;
}

.sidebar:hover::after {
  width: 100%;
}
    .sidebar h3 {
      font-family: 'sf-pro-title';
      margin-bottom: 15px;
      font-size: 18px;
    }

    .sidebar ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .sidebar ul li {
      margin-bottom: 10px;
    }

    .sidebar ul li button {
      width: 100%;
      height: 50px;
      display:flex;
      align-items: center;
      background: none;
      border: none;
      padding: 15px;
      text-align: left;
      cursor: pointer;
      border-radius: 5px;
      font-size: 0.8rem;
      transition: background 0.3s;
      color: #fff;
      font-family: 'sf-pro-title';
    }

    .sidebar ul li button:hover{
       background: #e73c45a4;
       backdrop-filter: blur(12.9px);
-webkit-backdrop-filter: blur(12.9px);
      color: #fff;     
    }
    .sidebar ul li button.active {
      background: #e73c45;
      backdrop-filter: blur(12.9px);
-webkit-backdrop-filter: blur(12.9px);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.453);
      color: #fff;
    }

    .content{
      flex: 1;
      background: rgba(36, 36, 36, 0.25);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(12.9px);
-webkit-backdrop-filter: blur(12.9px);      
border-radius: 7.5px;
      padding: 40px;
      overflow: hidden;
    }

.content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #e73c45;
  border-bottom-left-radius: 7.5px;  
  border-bottom-right-radius: 7.5px;  
  transition: width 0.5s ease-in-out;
}

.content:hover::after {
  width: 100%;
}


.content img{
  width: 250px;
}
    .content h2 {
font-family: 'sf-pro-title';
      margin-top: 0;
      color: #fff;
font-size: 2rem;
    }

    .content p {
      font-family: 'sf-pro-regular';
      line-height: 1.5;
      color: #fff;
      transition: all .3s ease-in-out;
      margin-top: 5px;
      margin-bottom: 25px;
    }
.content p:hover{
  color: antiquewhite;
}

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

.sidebar {
    max-width: 100%;
    position: relative;
    cursor: pointer;
  }

  .sidebar h3 {
    margin: 0;
    padding: 15px;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sidebar h3::after {
    content: "\25BC";
    font-size: 14px;
    transition: transform 0.5s ease;
  }

  .sidebar.open h3::after {
    transform: rotate(180deg);
  }

.sidebar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; 
  width: 0;
  height: 2px;
  background-color: #e73c45;
  border-bottom-left-radius: 7.5px;  
  border-bottom-right-radius: 7.5px;
  transition: width 0.5s ease-in-out;
}

.sidebar.open::after {
  width: 100%;
}

  .sidebar ul {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    margin-top: 10px;
    transition: max-height 1s ease-in-out;
  }

  .sidebar.open ul {
    max-height: 1000px; 
  }
  .content{
      margin-top: 75px;

  }
  .content h2{
    font-size: 1.5rem;
  }
  .content p{
    font-size: 1rem;
  }
    }
  

    main .last{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1024px;
    height: 200px;
    gap: 10%;
    margin-top: 100px;
    margin-bottom: 100px;
}
main .last p{
    font-size: 1.2rem;
    font-family: 'handipro';
    color: #fff;
    text-align: center;
}
main .last a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    border-radius: 10px;
    background-color: #e73c45;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
main .last a button{
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    font-family: 'handipro';
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    border-radius: 10px;
}
main .last a:hover{
    background-color: #393939;
}

    footer{
        position: absolute;
    width: 100%;
    height: 150px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        list-style: none;
        margin-top: 100px;
    }
        .footerbackground{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        list-style: none;
        max-width: 1900px;
        width: 100%;
        height: 100%;
    border-top: 1px solid #6d6d6d99;
background: rgba(29, 29, 29, 0.45);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(12.9px);
-webkit-backdrop-filter: blur(12.9px);
    }
.footercontainer{
         position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        list-style: none;
        width: 90%;
        height: 90%;
   
}
.ftop{
display: none;
}
.fbot{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50%;
}  
.fcntr4{
      position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    height: 100%;
}
.fcntr4 h3{
    font-family: 'handipro';
    font-size: 120%;
    color: white;
    width: 50%;
}
.fcntr4 p{
    font-family: 'handipro';
    font-size: 100%;
    color: white;
    text-decoration: none;
    width: 50%;

}
.fcntr5{
      position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 30%;
    height: 100%;
}
.fcntr5 p{
    font-family: 'musticapro';
    font-size: 100%;
    color: white;
}
.fcntr6{
      position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    height: 100%;
}
.fcntr6background{
      position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    width: 100%;
    height: 80%;
gap: 10%;
}

.fcntr6background .socialmediaicon{
    position: relative;
    width: 80%;
    height: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5%;
    user-select: none;
}  
.fcntr6background .socialmediaicon a{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
width: 50px;
height: 50px;
user-select: none;
background: rgba(50, 50, 50, 0.45);
border-radius: 10px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(4.9px);
-webkit-backdrop-filter: blur(4.9px);
transition: all .3s ease-in-out;
}
.fcntr6background .socialmediaicon a:hover{
background: #59595973;
backdrop-filter: blur(4.9px);
-webkit-backdrop-filter: blur(4.9px);
}
.fcntr6background .socialmediaicon a img{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 40%;
height: 40%;
user-select: none;
}

@media (max-width: 900px) {
    footer{
        height: 250px;
    }
.ftop{
    display: flex;
    flex-direction: column;
    height: 50%;
    width: 100%;
}
.fcntr1{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: url(img/2side\ music\ no\ text.png);
background-repeat: no-repeat;
background-size: 50%;
background-position: 50%;
}
.fcntr2{
    width: 100%;
    justify-content: space-around;
    height: auto;
    flex-direction: row;
    margin-bottom: 20px;
}
.fcntr2 ul{
    display: flex;
}
.fcntr3{
    display: none;
}
.links h3{
font-size: 1.2rem;
}
.footerlinks a{
    font-size: 0.7rem;
}
.fbot{
    display: flex;
    flex-direction: column;
    height: 50%;
    width: 100%;
}
.fcntr4{
    display: none;
}
.fcntr5{
    width: 100%;
}
.fcntr6{
    width: 100%;
}

.fcntr6background{
align-items: center;
}
    }
