* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 650px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Logo styling */
.logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 20%;
}

h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

p {
  font-size: 1.2em;
  margin-bottom: 15px;
}

/* Contact info styling */
.contact-info {
  margin-top: 20px;
  font-size: 1em;
  line-height: 1.5;
}
.whatsapp-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #25d366;
  color: white;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }
  p {
    font-size: 1em;
  }
}
