@font-face {
    font-family: 'paladin';
    src: url('FONT/paladins3d.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'paladinsstraight';
    src: url('FONT/paladinsstraight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  body {
    
    background-color: #090909;
    color: #333;
    
  }

  .FAQ-Section {
    position: relative;
    padding: 40px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
  }
  
  .FAQ-Section::before {
    content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('IMG/infoHomePage.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 50%; /* Adjust the opacity as needed */
  z-index: -1; /* Ensure the pseudo-element is behind the content */
  }
  
  .FAQ-Container {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    z-index: 1; /* Ensure the cards are above the pseudo-element */
  }
  
  .FAQ-Container h1, .FAQ-Container h2 {
    color: white;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'paladinsstraight'
  }
  
  .FAQ-Container h2 {
    font-size: 36px;
    font-family: 'paladinsstraight', sans-serif;
  }
  
  .FAQ-Container h3 {
    font-size: 28px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    
  }
  
  .FAQ-Container p{
    color: lightgray;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
  }

  @media (max-width:768px){
    .FAQ-Container{
      margin-bottom: 100px;

    }

    .FAQ-Section::before{
      width: 100%;
    }

  }
  
