/* 1. Reset defaults */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Full-bleed body & 10%-opacity background overlay */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  position: relative;
  background-color: #f2f2f2;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('bg_image.png') center/cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

/* 3. Centered wrapper */
.container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
}

/* 4. Header & Footer */
header, footer {
  background: #f2f2f2;
  padding: 10px;
  text-align: center;
}

/* 5. Logo + Title */
.site-header .logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.site-header .logo-title .site-logo {
  width: 100px;
  height: auto;
}

/* 6. Navigation links (default) */
nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

/* 7. Active menu item */
nav a.active {
  font-weight: bold;
  color: #007ACC;
  position: relative;
}
nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  background: #007ACC;
  width: 100%;
  position: absolute;
  bottom: -4px;
  left: 0;
}

/* 8. Section spacing */
.container section {
  margin-bottom: 2em;
}
.container section > h2 {
  margin-bottom: 0.75em;
}

/* 9. Contact-info paragraphs */
.contact-info p {
  margin: 0 0 0.75em;
}

/* 10. Numbered forms list */
.forms-list {
  margin: 0;
  padding-left: 2em;
  list-style-type: decimal-leading-zero;
}
.forms-list li {
  margin-bottom: 1.5em;
}

/* 11. CTA button */
.cta {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: #007ACC;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
}

/* 12. Form and button styles (unchanged)… */
/* … */
