body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  padding: 8px;
}

.card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 480px;
  width: 100%;
  padding: 16px;
  text-align: center;
}

h1 {
  font-size: 1.8rem;
  color: #333;
}

.info-text {
  color: #555;
  margin-bottom: 12px;
}

.image-container img {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 12px;
}

.download-btn {
  display: inline-block;
  padding: 12px 22px;
  background-color: #4F7C82;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.download-btn:hover {
  background-color: #62989F;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 12px 0;
}

.social-icons a {
  font-size: 0.75rem;
  color: #444;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icons img {
  width: 32px;
  height: 32px;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  width: 60%;
  margin: 2rem auto;
}

.footer {
  font-size: 0.75rem;
  color: #777;
}