body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
  color: #333;
}

.logo-container {
  text-align: center;
  padding: 40px 0 10px;
}

.logo {
  height: 50px;
}

.card {
  background: white;
  max-width: 500px;
  margin: 20px auto;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.card h1 {
  font-size: 22px;
  margin-bottom: 20px;
}

.card p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.email {
  font-size: 17px;
  font-weight: 600;
  color: #4357AD;
  background-color: #f0f8ff;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  word-break: break-word;
}

.cta-button {
  background-color: #4357AD;
  color: white;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: #6269ae;
}

.footer {
  font-size: 13px;
  text-align: center;
  margin-top: 30px;
  color: #666;
}

.footer a {
  color: #4357AD;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.store-buttons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.store-button {
  background: #000;
  border-radius: 8px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 135px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.store-button img {
  height: 100%;
  max-height: 32px;
  width: auto;
  display: block;
}

.store-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 2px #00000022;
}
