body {
  min-height: 100vh;
  background: linear-gradient(135deg, #181c24 0%, #23283a 100%) !important;
  color: #e0e6ed !important;
  font-family: Arial, sans-serif !important;
  overflow-x: hidden;
}

.info-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 16px 64px 16px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.info-hero {
  text-align: center;
  margin-bottom: 24px;
}
.info-hero h1 {
  color: #3fa7ff;
  font-family: Impact, Charcoal, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}
.info-lead {
  color: #b0c4de;
  font-size: 1.25rem;
  margin-bottom: 0;
}
.info-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.info-link-card {
  flex: 1 1 320px;
  max-width: 360px;
  min-width: 220px;
  background: #23283a;
  color: #e0e6ed;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
  padding: 32px 28px 24px 28px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 2px solid #353b4a;
}
.info-link-card h2 {
  color: #3fa7ff;
  font-family: Impact, Charcoal, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.3em;
}
.info-link-card p {
  color: #b0c4de;
  font-size: 1.08rem;
}
.info-link-card:hover {
  background: #3fa7ff;
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(63,167,255,0.18);
  transform: translateY(-4px) scale(1.03);
}
.info-link-card:hover h2,
.info-link-card:hover p {
  color: #fff;
}
.about-link {
  color: #3fa7ff;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.about-link:hover {
  color: #e0e6ed;
}
@media (max-width: 700px) {
  .info-main { padding: 24px 2vw 32px 2vw; gap: 28px; }
  .info-links { flex-direction: column; gap: 18px; }
  .info-link-card { padding: 20px 10px 16px 10px; }
  .info-hero h1 { font-size: 1.5rem; }
}
