body {
    font-family: sans-serif;
    background-color: #0C2340;
    color: #919D9D;
}

a, a:visited {
  color: white;
}

.banner {
    width: 100%;
    height: 48px;
    background-color: #0C2340; 
    color: white; 
    text-align: left; 
    padding: 10px 10px; 
    box-sizing: border-box; 
    margin: 0; 
    font-size: 24px;
    
}

h1 {
    color: #FFFFFF;
}

h2 {
    color: #419419;
}
h3 {
    color: #FA4616;
}
p {
    color: #919D9D;
}

.main-nav {
  /* whatever container styles you want */
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;           /* horizontal top level */
  gap: 2rem;               /* space between top items */
background: #919D9D;
}

.menu > li {
  position: relative;      /* important for positioning submenus */
}

.menu a {
  display: block;
  padding: 0.8rem 1rem;
  text-decoration: none;
  
  color:black;
  /* your colors, fonts, etc. */
}

.menu a:hover {
  background: #f0f0f0;     /* or whatever hover style */
}

/* ▼▼▼ The dropdown magic ▼▼▼ */
.submenu {
  display: none;                    /* hidden by default */
  position: absolute;
  top: 100%;                        /* right below parent */
  left: 0;
  min-width: 180px;                 /* adjust to taste */
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}

.has-submenu:hover > .submenu {
  display: block;                   /* show on hover */
}

/* Second+ level submenus appear to the right */
.submenu .has-submenu {
  position: relative;
}

.submenu .has-submenu:hover > .submenu {
  display: block;
  top: 0;                           /* align top with parent item */
  left: 100%;                       /* appear to the right */
  margin-left: 1px;                 /* tiny gap to prevent gap flicker */
}

.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.side-by-side {
      display: flex;
      flex-wrap: wrap;           /* allows stacking on small screens */
      gap: 2rem;                 /* space between image and text */
      align-items: flex-start;   /* ← this makes text start at the top of image */
      max-width: 1400px;         /* optional – prevents it from getting too wide */
      margin: 0 auto;
      padding: 1.5rem;
    }

.side-image {
      flex: 0 0 30vw;           /* 30% of viewport width */
      max-width: 400px;         /* ← never bigger than this – adjust to taste */
      /* or use: max-width: 450px; or whatever your largest desired size is */
    }

    .side-image img {
      display: block;           /* removes bottom gap */
      width: 100%;
      height: auto;
      border-radius: 8px;       /* optional */
      object-fit: cover;        /* optional – if you want to crop instead of squash */
    }

    .side-text {
      flex: 1;                  /* takes remaining space */
      min-width: 280px;         /* prevents text from getting too narrow */
    }

    /* Mobile – stack vertically */
    @media (max-width: 700px) {
      .side-by-side {
        flex-direction: column;
        gap: 1.5rem;
      }
      .side-image {
        flex: 0 0 auto;
        max-width: 100%;        /* full width on mobile */
      }
    }

