/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body & Font Styles */
  body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Section Title */
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ff5a00;
    margin-bottom: 30px;
  }
  
  /* Help Section */
  .help-section {
    background-color: #1c1c1c;
    padding: 50px 20px;
    border-radius: 10px;
  }
  
  .faq-section {
    margin-top: 30px;
  }
  
  .faq-title {
    font-size: 2rem;
    color: #ff5a00;
    margin-bottom: 20px;
  }
  
  .faq-item {
    margin-bottom: 20px;
  }
  
  .faq-question {
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
  }
  
  .faq-answer {
    font-size: 1rem;
    color: #bbb;
    margin-top: 10px;
  }
  
  .faq-answer a {
    color: #ff5a00;
    text-decoration: none;
  }
  
  .faq-answer a:hover {
    text-decoration: underline;
  }
  
  /* Contact Support Section */
  .contact-support-section {
    margin-top: 40px;
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
  }
  
  .contact-title {
    font-size: 1.8rem;
    color: #ff5a00;
    margin-bottom: 20px;
  }
  
  .contact-support-section p {
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 10px;
  }
  
  .contact-support-section a {
    color: #ff5a00;
    text-decoration: none;
  }
  
  .contact-support-section a:hover {
    text-decoration: underline;
  }
  
  /* Social Icons */
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    margin-right: 15px;
  }
  
  .social-icons img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
  }
  
  .social-icons img:hover {
    opacity: 0.7;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .faq-item {
      margin-bottom: 15px;
    }
  
    .social-icons {
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }
  
    .social-icons a {
      margin-right: 10px;
    }
  }