/* maintenance.css */
* {
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #fdfdfd 0%, #f0f4f8 100%);
  color: #2c3e50;
  text-align: center;
  padding: 40px 20px 40px;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container {
  max-width: 700px;
  width: 100%;
}
.logo img {
  max-width: 100%;
  height: auto;
  margin-bottom: -10px;
}
h1 {
  font-size: 28px;
  margin-bottom: -10px;
  font-weight: 700;
  color: #2c3e50;
}
p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin: 30px auto;
  max-width: 1050px;
  padding: 0 10px;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  text-align: center;
  transition: transform 0.2s ease;
}
.card:hover {
  transform: scale(1.03);
}
.card img {
  width: 100%;
  max-width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 12px;
}
.card span {
  font-size: 15px;
  line-height: 1.3;
}
.footer-note {
  margin-top: 40px;
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .card img {
    max-width: 170px;
    height: 130px;
  }
  .card span {
    font-size: 14px;
  }
}