/* GENERAL */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #000000;
  color: #000066;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* HEADER */
.header-container {
  width: 100%;
  max-width: 1255px;
  margin: 0 auto;
  text-align: center;
}

.main-headerimage {
  width: 90%;
  max-width: 1255px;
  margin: 0 auto;
  display: block;
}

/* CLICK TO CALL */
.click-box {
  display: block;
  width: 90%;
  max-width: 400px;
  margin: 10px auto;
  padding: 12px;
  background-color: #fafaf4;
  border: 2px solid #bdc476;
  border-radius: 8px;
  color: #000066;
  text-align: center;
  font-weight: bold;
}

/* HAMBURGER */
.hamburger-menu {
  width: 40px;
  margin: 10px auto;
  cursor: pointer;
}

.hamburger-menu .bar {
  height: 4px;
  background-color: #fafaf4;
  margin: 6px 0;
  border-radius: 2px;
}

/* MENU */
.menu-bar {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.menu-bar.open {
  display: flex;
}

.menu-button {
  background-color: #fafaf4;
  color: #000066;
  border: 2px solid #bdc476;
  border-radius: 6px;
  padding: 8px 12px;
  width: 80%;
  max-width: 250px;
  text-align: center;
  font-weight: bold;
}

.menu-button.active {
  background-color: #000066;
  color: white;
}

/* MAIN CONTAINER */
.main-container {
  width: 95%;
  max-width: 970px;
  background-color: #fafaf4;
  border: 4px solid #bdc476;
  margin: 20px auto;
  padding: 15px;
  box-sizing: border-box;
}

/* TITLES */
.text-title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

/* Back to top button next to section titles */
/* tiny inline icon */
.title-top-link img {
  width: 22px;
  height: 22px;
  margin-left: 2px;      /* small gap from title text */
  vertical-align: middle; /* aligns properly with text */
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.title-top-link img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.title-top-link {
  display: inline-flex;
  align-items: center;
}


.subtitle {
  font-size: 20px;
  font-weight: bold;
  color: #000066;
  margin-top: 25px;
  text-align: center;
}

/* QUESTIONS */
.question {
  font-size: 17px;
  font-weight: bold;
  margin-top: 20px;
}

/* LISTS */
.bullet-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

/* SEARCH BAR */
.search-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px auto;
}

#faqSearch {
  padding: 10px;
  width: 65%;
  border: 2px solid #bdc476;
  border-radius: 8px;
  font-size: 16px;
}

.search-container button {
  padding: 10px 14px;
  font-size: 16px;
  background-color: white;
  border: 2px solid #bdc476;
  border-radius: 8px;
  cursor: pointer;
}

/* HIGHLIGHT */
.highlight {
  background-color: #ffff99;
}

.back-to-top-button {
  display: flex;            /* flex makes centering easy */
  justify-content: center;  /* centers content horizontally */
  margin: 20px 0;           /* spacing above/below */
  width: 100%;              /* take full width of parent */
}

.back-to-top-button img {
  width: 40px;   /* match your other buttons */
  height: auto;
  display: block;
  transition: transform 0.2s ease;
}

.back-to-top-button:hover img {
  transform: scale(1.05);
}

/* FOOTER */
.footer-box {
  background-color: #fafaf4;
  border: 2px solid #bdc476;
  border-radius: 8px;
  max-width: 390px;
  margin: 20px auto;
  padding: 12px;
  text-align: center;
}

.footer-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-box li {
  margin: 6px 0;
}

.footer-box a {
  color: #000066;
  font-weight: bold;
  text-decoration: none;
}

/* COPYRIGHT */
.copyright-image {
  width: 80%;
  max-width: 663px;
  margin: 20px auto;
  display: block;
}
