body {
    font-family: 'Roboto', sans-serif;
    background: #f4f6f8;
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  h1 {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .faq {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .faq:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }
  
  .faq h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
  }
  
  .faq p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
  }
  
  .faq a {
    color: #6c63ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .faq a:hover {
    color: #574fd6;
  }
  
  .site-footer {
    background-color: #fff;
    padding: 30px 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-top: 40px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-links a {
    color: #6c63ff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #574fd6;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
  
    .faq {
      padding: 15px;
    }
  
    .faq h2 {
      font-size: 1.6rem;
    }
  
    .faq p {
      font-size: 1.1rem;
    }
  }
  