* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  min-height: 100%;
}
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f7f9fb;
  background: radial-gradient(circle at top left, #0f3d74 0%, #061a33 40%, #020812 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.page-wrapper {
  width: 100%;
  max-width: 720px;
}
.content-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 42px 36px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}
.brand-logo {
  
  width: auto;
  height: auto;
  margin-bottom: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.brand-logo img {
  display: flex;
  margin: 0 auto;
}
h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  margin-bottom: 18px;
}
.subtitle {
  max-width: 620px;
  font-size: 1.05rem;
  color: #d8e3f4;
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact-block {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-link {
  display: inline-block;
  padding: 16px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.24s ease, background 0.24s ease;
}
.contact-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}
.note {
  color: #adcaf7;
  font-size: 0.98rem;
}
@media (max-width: 560px) {
  .content-card {
    padding: 30px 20px;
  }
  .contact-block {
    gap: 12px;
  }

}