h1 {
  color: #ff80ab; /* Light pink */
  text-align: center;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-wrapper {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #ff80ab; /* Light pink */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  margin-bottom: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  text-align: center; /* Center the button text */
  
}

.btn:hover {
  background-color: #ff6699; /* Darker pink */
}

.logo {
  text-align: center;
  margin-top: 20px;
}

.logo img {
  max-width: 100%;
  height: auto;
}
