body {
    
    background-color: #50abac;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
  }

  .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/Galletas.jpg');
  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;
  }
  
  .FAQ-Container h2 {
    font-size: 36px;
    font-family: 'paladin', sans-serif;
  }
  
  .FAQ-Container h3 {
    font-size: 28px;
    color: white;
    font-family: 'paladin', sans-serif;
  }
  
  .FAQ-Container p{
    color: lightgray;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'paladin', sans-serif;
  }
  