body {
    margin: 0;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
                 Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: #ffffff;
    font-size: 14px;
    color: #2d2d2d;
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.header-container {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 5px;
}

h1 {
font-size: 1.6rem;
font-weight: 600;
margin: 0;
}

.header-logo {
width: 40px;
height: 40px;
object-fit: contain;
}

.subtext {
font-size: 12px;
color: #666666;
margin-top: 0;
margin-bottom: 5px;
}

.bottom-buttons {
display: flex;
justify-content: flex-start;
gap: 10px;
margin-top: 10px;
flex-wrap: wrap;
}

a.button {
text-decoration: none;
padding: 10px 12px;
font-size: 13px;
font-weight: 500;
border-radius: 10px;
transition: background-color 0.3s ease;
white-space: nowrap;
border: 1px solid blue;
color: blue;
background-color: white;
display: inline-block;
box-sizing: border-box;
}

a.button.active {
background-color: blue;
color: white;
}

a.button:hover {
background-color: #f0f8ff;
}

.promo-image {
  margin-top: 20px;
  text-align: center;
}

.promo-image img {
  width: 240px; /* adjust size as needed */
  height: auto;
  display: inline-block;
}

html {
  overflow-y: scroll;
}

.narrative-img {
  height: 240px;
  width: auto;
  display: block;
  margin: 15px auto; /* This centers the image horizontally */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.sticky-nav {
  position: sticky;
  top: 0;
  background-color: #fff;
  padding: 10px 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.contact-info {
  margin: 10px;
  font-size: 14px;
  color: #333;
}
.contact-info a {
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

.about-section {
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.about-section h2, .about-section h3 {
  margin-top: 0px;
  color: #2d2d2d;
}

.about-section ul {
  padding-left: 20px;
  margin: 10px 0;
}

.about-section li {
  margin-bottom: 8px;
}

.top-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center; /* optional: center horizontally */
}

.icon-button {
  padding: 6px 8px;
  background-color: #eee;
  border-radius: 10px;
  text-decoration: none;
  font-size: 12px;
  transition: background-color 0.2s;
}

.icon-button:hover {
  background-color: #ddd;
}