body {
    font-family: 'Helvetica Neue', sans-serif;
    padding-top: 4rem;
  }
  
  .cta-btn {
    background-color: #2a417b;
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    transition: filter 0.3s;
  }
  
  .cta-btn:hover {
    filter: brightness(110%);
  }
  
  .btn-white {
    background-color: white;
    color: #2a417b;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: background-color 0.3s;
  }
  
  .btn-white:hover {
    background-color: #f1f1f1;
  }
