/* 1. Box Model Sane Defaults & Margin Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Document & Body Foundations */
html {
  color-scheme: light dark; /* Native dark mode handling */
  scroll-behavior: smooth;
}
 
body {
  /* min-height: 100%; */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Source Sans Pro", sans-serif;
  color: #fff;
  font-weight: 500;
}

/* 3. Media & Embedded Elements Layout Fixes */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 4. Form & Input Typography Inheritance */
input,
button,
textarea,
select {
  font: inherit;
}

/* 5. Text Wrap & Readability */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1, h2, h3 {
  line-height: 1.1;
  text-wrap: balance; /* Prevents awkward single-word line breaks */
  margin: 2rem 0 1rem 0;
}
h1 {
    color: #f9ae2f;
    font-size: 4rem;
    font-weight: 700;
    margin-top: 0;
}
p {
    margin: 1rem 0;
}
ul, ol {
    padding-left: 20px;
}

/* 6. Accessible Animations (Respect User Choices) */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.sr-only, fieldset legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 7. Custom CSS */
a {
    color: #f9ae2f;
}
.wrapper {
    margin: 0 auto;
    max-width: 760px;
    width: 100%;
    background-color: rgba(67, 133, 91, 0.7);
    min-height: 100vh;
    text-align: center;
    box-sizing: border-box;
}
.hdr-img img {
    width: 100%;
    height: auto;
    max-width: 100%;
}
.main-content {
    padding: 30px 50px;
}
.main-content.left {
    text-align: left;
}
.main-content p {
    font-weight: 600;
}
.form {
    padding-bottom: 20px;
    text-align: left;
    position: relative;
    z-index: 10;
    margin-top: -30px;
}
.back-link {
    display: block;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease; 
}
.back-link svg {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease; 
}
.back-link:hover svg {
    left: -3px;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    .main-content {
        padding: 20px 30px;
    }
}

#fsSection p {
    color: #fff !important;
}
.fsSectionHeader {
    display: none !important;
}
.fsform-container form {
    margin: 0;
    padding: 0 30px;
}

label.fsOptionLabel {
    line-height: 1em !important;
}