  body {
    margin: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #7e7d7a;
  }
  .container {
    position: relative;
  }
  .home-button {
    font-size: 16px;
    color: #7e7d7a;
    text-decoration: none;
    padding: 5px 15px;
    transition: background 0.3s, color 0.3s;
  }
  .home-button i {
    font-size: 18px;
    margin-right: 5px;
  }
  .home-button:hover {
    background-color: #f7fafd;
    color: #9c9292;
  }
  .m2topnav {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #ebe8e3;
    padding: 5px 10px;
    border-bottom: 1px solid #c0b1b1;
    z-index: 99;
  }
  .m2secondnav {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    top: 30px;
    left: 0;
    height: 50px;
    background-color: #fafafa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    z-index: 98;
  }
  .nav-right-links {
    display: flex;
    align-items: center;
    gap: 10px;
    /* adjust spacing between links */
  }
  .nav2-right-links {
    display: flex;
    align-items: center;
    gap: 10px;
    /* adjust spacing between links */
  }
  .nav-left-text {
    padding-left: 15px;
  }
  .nav-left-text a {
    font-size: 14px;
    font-weight: 600;
    color: #7e7d7a;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  /* .nav2-left-text a:hover {
    color: #9c9292;
  } */
  .nav2-left-text {
    padding-left: 15px;
    /* color: #ffffff; */
  }
  .nav2-left-text a {
    font-size: 18px;
    /* background: blue; */
    /* font-weight: 600; */
    color: #fdfdfd;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'League Spartan Bold', Tahoma, Geneva, Verdana, sans-serif;
  }
  .nav2-left-text a:hover {
    background-color: #fdfdfd;
  }
  /* Make sure the container can show overflowed dropdowns */
.m2secondnav .nav2-right-links { overflow: visible !important; }

/* Anchor the STATS dropdown so its content can be positioned relative to it */
.m2secondnav .nav2-right-links .m2dropdown.stats-dropdown {
  position: relative !important;
}

/* Force the dropdown panel to be absolutely positioned and shift it left */
.m2secondnav .nav2-right-links .m2dropdown.stats-dropdown .m2dropdown-content {
  position: absolute !important;
  left: -48px !important;   /* adjust this number as needed (e.g., -30px, -60px) */
  right: auto !important;
  transform: none !important;
  margin-left: 0 !important;
  z-index: 9999;            /* keep it above neighbors */
}

  .branding-strip {
    /* background-color: #191970; */
    /* deep blue like Polar Shades' site */
    flex-grow: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 20px;
  }
  .m2topnav a {
    color: #7e7d7a;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
  }
  .m2topnav a i {
    font-size: 18px;
    margin-right: 10px;
    color: #7e7d7a;
    transition: color 0.3s;
  }
  .m2topnav a:hover i {
    color: #d9dde2;
  }
  .m2topnav a:hover {
    background-color: #f7fafd;
    color: #9c9292;
  }
  .m2dropdown {
    position: relative;
    display: inline-block;
  }
  .m2dropbtn {
    background: none;
    border: none;
    color: #000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    padding: 5px 10px;
    cursor: pointer;
  }
  .m2dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    border: 1px solid #c0b1b1;
    border-radius: 10px;
    z-index: 999;
    transform: translateX(-20%);
  }
  .m2dropdown-content a {
    color: #1f2833;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.3s, color 0.3s;
    border-bottom: 1px solid #c0b1b1;
    white-space: nowrap;
  }
  .m2dropdown-content a:hover {
    background-color: #1f2833;
    color: #ffffff;
  }
  .m2dropdown-content:not(.multi-column) {
    display: none;
  }
  .m2dropdown:hover .m2dropdown-content:not(.multi-column) {
    display: block;
  }
  .m2dropdown-content.multi-column {
    display: none;
    flex-direction: row;
    gap: 20px;
    padding: 10px;
    min-width: 600px;
    transform: translateX(-20%);
  }
  .m2dropdown:hover .m2dropdown-content.multi-column {
    display: flex;
  }
  .m2dropdown-content.multi-column .column {
    flex: 1;
  }
  .m2sub-dropdown {
    position: relative;
  }
  .m2sub-dropdown-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #fff;
    min-width: 180px;
    border-radius: 10px;
    z-index: 999;
  }
  .m2sub-dropdown:hover .m2sub-dropdown-content {
    display: block;
  }
  .column {
    display: flex;
    flex-direction: column;
  }
  .column-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    color: #1f2833;
    border-bottom: 2px solid #1f2833;
    padding-bottom: 5px;
  }
  .column a {
    color: black;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
    transition: background 0.3s;
  }
  .column a:hover {
    background-color: #1f2833;
    color: white;
  }
  .m2secondnav a:hover {
    background-color: #1f2833;
    color: #ffffff;
  }
.how {
  width: 200px;
  max-width: 100%; height: auto;  /* for responsive scaling */
  padding-left: 75px;
}
.how img{
  border-style: solid;
  border-color: blue;
}
  .red-box {
    background: #009933;
    color: white !important;
    padding: 5px 20px;
    font-size: 14px;
    display: flex;
    letter-spacing: 1px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 70%;
  }
.style1 {font-size: xx-large}
.m2dropdown .red-box {
  background-color: #b22222;
  color: white;
  padding: 10px 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  width: 100%;
}
/* Target the 5th top-level dropdown inside .nav2-right-links (that's STATS) */
.m2secondnav .nav2-right-links > .m2dropdown:nth-of-type(5) {
  position: relative !important;
}
.no-caps {
  text-transform: none !important;
}
/* Shift the STATS panel left a bit */
.m2secondnav .nav2-right-links > .m2dropdown:nth-of-type(5) .m2dropdown-content {
  position: absolute !important;
  left: -60px !important;     /* tweak this: -40px, -80px, etc. */
  right: auto !important;
  transform: none !important; /* overrides the global translateX(-20%) */
  margin-left: 0 !important;
  z-index: 9999;
}
