/* Global styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    overflow: hidden;
  }

  a {
    color: #f99f16;
    text-decoration: none;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #1c1c1c;
    color: white;
    padding: 10px;
  }
  
  /* Button styles */
  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .buttons a {
    display: inline-block;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none;
  }
  
  .buttons a.google-play {
    background-image: url('img/google-badge.png');
    width: 200px;
    height: 60px;
  }

  .buttons a.app-store {
    background-image: url('img/apple-badge.png');
    width: 200px;
    height: 60px;
  }

  .buttons .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f99f16;
    color: #1c1c1c;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin: 25px 5px;
  }

  .buttons .button:hover {
    background-color: #1c1c1c;
    color: white;
  }
  
  /* FAQ styles */
  .scroll-container {
    max-height: 60vh;
    overflow-y: auto;
    margin-top: 30px;
  }
  
  .faq {
    margin-bottom: 20px;
  }
  
  .question {
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .answer {
    margin-left: 20px;
    margin-bottom: 30px;
  }
  
  /* Media queries */
  @media (max-width: 768px) {
    .container {
      padding: 0 20px;
    }
  
    .buttons {
      margin-top: 20px;
    }
  
    .buttons a {
      font-size: 1.2rem;
    }
  
    .scroll-container {
      max-height: 40vh;
    }
  }
  