/* styles.css */
body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #e8f5e9, #ffffff);
  font-family: Arial, sans-serif;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: white;
}

.logo {
  width: 220px;
  height: 220px;
  margin-bottom: 20px;
}

.text {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
  max-width: 500px;
}

.highlight {
  font-weight: bold;
  color: #2e7d32;
}

.whatsapp {
  margin-top: 25px;
  display: inline-block;
  padding: 14px 24px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: bold;
  transition: 0.3s ease;
}

.whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}