/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #7289da;
    color: #fff;
    width: 100%;
  }
  
  .hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  
  .invite-button {
    background-color: #fff;
    color: #7289da;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .invite-button:hover {
    background-color: #e0e0e0;
  }
  
  /* Features Section */
  .features {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    max-width: 1000px;
    width: 100%;
    text-align: center;
  }
  
  .feature {
    flex: 1;
    padding: 20px;
  }
  
  .feature h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  /* How to Use Section */
  .how-to-use {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    width: 100%;
  }
  
  .how-to-use h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
  }
  
  .how-to-use p {
    font-size: 1.1em;
  }
  
  /* Privacy Policy & Terms of Service Sections */
  .privacy-policy, .terms-of-service {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    width: 100%;
  }
  
  .privacy-policy h2, .terms-of-service h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    width: 100%;
    margin-top: 20px;
  }
  
  footer a {
    color: #7289da;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  