body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.help-wrapper {
  background-color: white;
  padding: 40px 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.help-wrapper h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-options p {
  font-size: 16px;
  margin: 15px 0;
}

.contact-options a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.contact-options a:hover {
  text-decoration: underline;
}