* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, 
               Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
}

.container {
  padding: 0 50px;
}

.bg-image {
  position: absolute;
  bottom: -88%;
}

.site-header {
  background: #f99c2d;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.site-nav, .footer-nav {
  display: flex;
  gap: 1rem;
}
.site-nav a, .footer-nav a, .footer-brand p {
  text-decoration: none;
  color: #555;
  font-size: 1rem;
}
.site-nav a:hover, .footer-nav a:hover {
  color: #000;
}

.site-header, .site-footer {
  background: #f99c2d;
}

.site-footer {
  color: #fff;
  padding: 1rem 0;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-content .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 10px;
  width: 100%;
  margin: 0 auto;
  background-color: #2b2b2bde;

  background-image: url("/world.svg");
  background-repeat: no-repeat;
  background-position: center 50%;
  background-attachment: fixed;    /* <— lock it in the viewport */
  background-size: cover;         /* or 'contain', depending on your design */
  background-origin: padding-box;
  min-height: calc(100vh - 72px - 60px);
  background-size: 75% auto;
}
.site-content .hero .container {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}
.header, .contact-us {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  font-style: normal;
}
.header > h1, .contact-us > h1 {
  font-style: normal;
  color: #ff9e40;
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
}
.header > h2, .contact-us > h2 {
  font-style: normal;
  color: #ff9e40;
  font-weight: 600;
  font-size: 30px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
}
.header > h3, .contact-us h3 {
  text-align: center;
  color: #ffffff;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  line-height: 36px;
}

.header > p, .contact-us > p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  flex-grow: 0;
  margin: 16px 16px 0px;
}

.header ul {
  list-style: disc inside;
  padding-left: 0;
  margin: 16px 0 0 0;
  color: #ffffff;
  text-align: center;
}

.header li {
  font-size: 15px;
  line-height: 1.5;
  margin: 6px 75px;
  color: #ffffff;
  text-align: left;
}
#about-us {
  scroll-margin-top: 100px; /* adjust based on your fixed header height */
}
.contact-us > button {
  background: #f6821f;
  border-radius: 4px;
  border: none;
  width: 180px;
  margin-top: 35px;
  height: 55px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  background: rgba(246, 130, 31, 1);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.options {
  display: flex;
  flex-direction: row;
}

.options > a {
  color: #ffffff;
  text-decoration: underline;
  margin: 0px 8px;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
}

.options > a:first-of-type {
  margin-right: 30px;
}

.hs-form-frame {
  margin: 0 50px;
}


@media screen and (max-width: 1024px) {
    .site-content .hero {
        background-size: contain;
        background-position-y: center;
    }
    .site-content .hero .container {
      max-width: none;
    }
}

@media screen and (max-width: 600px) {
  .site-content .hero{
      background-color: #000000bf;
      }
  .header p {
    font-size: 20px;
    margin: 8px 0 0;
  }
  .header li {
    margin: 6px 40px;
  }
    pre {
      font-size: 0.8rem;
      padding: 8px 12px;
      width: 100%;
    }

  body {
    width: 100vw;
  }

  .header img {
    margin-left: 0;
  }

  .installation-steps {
    width: 100%;
    box-sizing: border-box;
  }

  h1 {
    font-size: 1.6rem;
  }

  ol {
    padding-left: 20px;
  }

  li {
    margin-bottom: 5px;
  }
}
