body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 40px;
    background-color: #fff;
    color: #333;
    line-height: 1.8;
  }
  
  header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  h1 {
    font-size: 2.5em;
    color: #5c2d91;
    margin-bottom: 10px;
  }
  
  .subtitle-wrapper {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .subtitle {
    font-size: 1.2em;
    color: #666;
    margin-top: 10px;
  }
  
  .content {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto 80px auto;
  }
  
  .columns {
    display: flex;
    gap: 30px;
  }
  
  .column {
    flex: 1;
  }
  
  .column p {
    margin-bottom: 20px;
    font-size: 1.1em;
  }
  
  .buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .btn {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1em;
    transition: background-color 0.3s;
  }
  
  .btn:hover {
    background-color: #4b2474;
  }
  .pull-quote {
    font-size: 1.5em;
    font-weight: bold;
    color: #5c2d91;
    margin: 30px 0;
    padding: 10px;
    border-left: 5px solid #5c2d91;
    background-color: #f4f4f4;
  }