/* Footer */
footer {
  position: relative;
  background-color: #00000000;
  color: #333;
  padding-top: 80px;
  padding-bottom: 30px;
  text-align: center;
  overflow: hidden;        /* Still useful to ensure no overflow */
}

footer .logo {
  font-size: 48px; /* was 40px, +8 */
  color: #D3FC01;
  font-weight: 900;
  text-transform: uppercase; /* keep footer logo uppercase */
  text-align: center; /* Ensure logo is centered */
  margin: 0 auto; /* Center the logo block */
}

footer .container {
  text-align: center; /* Center all elements in the footer container */
  max-width: 800px !important;
  padding-top: 30px;
}

footer .container h2.above_black {
  text-align: center !important;
}

footer::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 50px;             /* Push half the circle out (if height is 200px) */
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 1400px;           /* Half the width to form a half circle */
  background-color: #D3FC01;
  border-top-left-radius: 50%;  /* Fully round the top corners */
  border-top-right-radius: 50%;
}
