/* Improve readability for paragraphs */
p {
  line-height: 1.6;
}
/* Accessibility: Skip link styles */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  background: #fff;
  color: #005a9c;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 1rem;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  width: auto;
  height: auto;
  outline: 2px solid #005a9c;
  box-shadow: 0 0 2px #005a9c;
}

/* site-vercel-eol main styles */
.centered-image {
  text-align: center;
  padding: 10px;
}
.centered-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  outline: none;
}
.centered-message, .centered-footer {
  text-align: center;
  padding: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  color: #222;
  background: #fff;
  border-radius: 8px;
  margin: 0 auto;
  max-width: 600px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.centered-footer {
  font-size: 0.9rem;
  font-weight: normal;
  color: #555;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .centered-message, .centered-footer {
    padding: 10px;
    font-size: 1.05rem;
  }
  .centered-image {
    padding: 5px;
  }
  .centered-footer {
    font-size: 0.8rem;
  }
}

/* Accessibility: Focus indicator for all interactive elements */
a, button, input, textarea, select {
  outline: none;
}
a:focus, button:focus, input:focus, textarea:focus, select:focus {
  outline: 2px solid #005a9c;
  outline-offset: 2px;
}
/* Remove border from phone number link */
a[href^="tel"] {
  border: none !important;
  outline: none;
  box-shadow: none;
}
