.header img {
  max-width: 180px;
  width: 150%;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  color: #1f2937;
}

.wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 720px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 32px;
}

.header {
  text-align: center;
  margin-bottom: 28px;
}

.header img {
  max-width: 120px;
  height: auto;
  margin-bottom: 16px;
}

.header h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

.header p {
  margin: 0;
  color: #6b7280;
}

.menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.menu a {
  display: block;
  text-decoration: none;
  background: #0f4c81;
  color: white;
  padding: 18px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease;
}

.menu a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15,76,129,.22);
}