/* Reset and base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9fafb; /* from first stylesheet */
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, a:focus {
  color: #0056b3;
  text-decoration: underline;
  outline: none;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem; /* from second stylesheet */
}
.footer-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem; /* from second stylesheet */
}
/*  Footer */
 footer {
  background-color: #1e3a8a;
  color: white;
  padding: 1rem 0;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

footer p {
  margin: 0;
  font-weight: 700;
  font-size: 1.9rem;
}


/* Footer override (second stylesheet) */
footer {
  background-color: #f4f4f4;
  text-align: center;
  padding: 1rem 0;
  margin-top: auto;
  color: #777;
  font-weight: normal;
  font-size: 0.9rem;
}
