body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.container {
  width: 80%;
  margin: 20px auto;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

h1 {
  text-align: center;
  color: #007bff; /* Blue color */
}

p {
  line-height: 1.6;
  color: #333; /* Darker text color */
}

strong {
  font-weight: bold;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.back-button {
  display: block;
  width: 150px;
  margin: 20px auto;
  padding: 10px;
  text-align: center;
  color: #fff;
  background-color: #007bff; /* Blue button */
  border-radius: 5px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  margin: 8px 0;
}

/* Responsive design for tablets and mobile */
@media only screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
}