* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  background:
    linear-gradient(rgba(13, 42, 74, 0.82), rgba(13, 42, 74, 0.82)),
    radial-gradient(circle at top, #2f80ed, #0d2a4a);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.card {
  width: 100%;
  max-width: 820px;
  background: #ffffff;
  border-radius: 28px;
  padding: 42px 34px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  border-top: 10px solid #f7c600;
}

.logo {
  width: 160px;
  height: auto;
  margin-bottom: 22px;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.12;
  color: #0d2a4a;
  font-weight: 800;
}

h1 span {
  color: #174ea6;
}

h2 {
  margin: 12px 0 18px;
  font-size: clamp(32px, 6vw, 58px);
  letter-spacing: 0.08em;
  color: #1a73e8;
}

.subtitle {
  font-size: 24px;
  margin: 8px 0;
  font-weight: 600;
}

.motto {
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.25;
  color: #0d2a4a;
  margin: 28px 0;
  font-weight: 700;
}

.approval {
  background: #f8fafc;
  border-left: 5px solid #f7c600;
  padding: 14px 18px;
  margin: 28px auto;
  max-width: 680px;
  font-size: 16px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
  text-align: left;
}

.contact p {
  margin: 0;
  padding: 18px;
  background: #f8fafc;
  border-radius: 16px;
  line-height: 1.5;
}

a {
  color: #174ea6;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 680px) {
  .card {
    padding: 30px 20px;
    border-radius: 22px;
  }

  .logo {
    width: 130px;
  }

  .contact {
    grid-template-columns: 1fr;
  }
}
