/* General body and container styling */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  padding: 20px;
  margin: 0;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

/* 404 page text */
h1 {
  font-size: 40px;
  text-align: center;
  margin-top: 20px;
}

p {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header image */
.header-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Footer styling */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid #ddd;
  color: #555;
}

footer a {
  text-decoration: none;
  color: #555;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  body { font-size: 18px; }
  h1 { font-size: 46px; }
  p { font-size: 20px; }
  footer { flex-direction: column; text-align: center; gap: 8px; }
}
