* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f7f7f7, #e9e9e9);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.card {
  background: white;
  width: 100%;
  max-width: 420px;
  padding: 32px 24px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

#logo {
  width: 105px;
  height: 105px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  color: #111;
}

#tagline {
  margin: 12px 0 24px;
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

.buttons {
  margin-top: 10px;
}

.buttons a {
  display: block;
  width: 100%;
  padding: 15px 16px;
  margin: 11px 0;
  background: #111;
  color: white;
  border-radius: 16px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.buttons a:active {
  transform: scale(0.98);
}

#google {
  background: #111;
}

#instagram {
  background: #262626;
}

#facebook {
  background: #1877f2;
}

#website {
  background: #333;
}

#whatsapp {
  background: #25d366;
}

#phone {
  background: #0f766e;
}

#location {
  background: #7c3aed;
}

.footer {
  margin-top: 26px;
  color: #888;
  font-size: 13px;
}

.footer strong {
  color: #111;
}
