/* Layout fix for sticky footer */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #ffffe4; /* Creamy off-white */
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Typography resets */
body, h1, h2, p {
  margin: 0;
  padding: 0;
}

header, footer {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  width: 100%;
}

header {
  background-color: #191970;
  color: white;
  padding: 40px 0;
  text-align: center;
  margin-bottom: 20px;
}

footer {
  background-color: #0dac60;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: auto;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px 40px;
}

section {
  margin-bottom: 30px;
}

section img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  display: block;
  border: 1px solid #ccc;
  border-radius: 5px;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 20px 0 10px 0;
  color: #191970; /* default dark blue */
}

h2.alt-color {
  color: #0dac60; /* alternate dark green */
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 500;
}

.backup-map {
  margin-top: 30px;
  text-align: center;
}

.backup-map img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.backup-map p {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
}

