* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  -- background: linear-gradient(to right, #f0f4f8, #dce3ea);
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c3e50;
}

.container {
  text-align: center;
  max-width: 700px;
  padding: 40px;
  background-color: #ffffffcc;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.logo-img {
  width: 200px;
  margin-bottom: 10px;
}

.logo-text {
  font-size: 28px;
  font-weight: 600;
  color: #1a73e8;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.coming-soon {
  display: inline-block;
  background-color: #1a73e8;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.contact-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.btn {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
  width: 230px;
  text-align: center;
}

.whatsapp {
  background-color: #25d366;
}

.whatsapp:hover {
  background-color: #1ebc57;
}

.email {
  background-color: #1a73e8;
}

.email:hover {
  background-color: #1558b0;
}