
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  html, body {
    overflow-x: hidden;
  }
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f3f3f3; 
    padding-top: 70px; 
}
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #004080;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center; 
    height: 70px; 
    padding: 0 4rem;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    white-space: nowrap;
    padding-left: 0.5rem; 
    flex-shrink: 0;
    text-decoration: none;
  }

  nav {
    flex-grow: 1; 
    display: flex;
    justify-content: flex-end; 
}

  .nav-links {
    display: flex;
    list-style: none;
    gap: 1rem; 
  }

  .menu-icon {
    display: none; 
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem; 
    text-transform: uppercase; 
  }

  
  .mission-statement-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: linear-gradient(135deg, #008deb, #004080); 
    flex-wrap: wrap;
    width: 100%; 
    max-width: 100vw; 
    margin: 0; 
    padding: 8rem; 
    gap: 6rem;
  }
  
  .mission-image ,
  .mission-text {
    flex: 1;
    max-width: 40%;
    max-width: 440px;
  }
  
  .mission-image {
    height: auto;
    border-radius: 8px;
    padding: 1rem;
  }

  .mission-image:has(+ .mission-text) {
    margin-bottom: 2rem; /* only if .mission-text is on the next line */
  }
  
  .mission-text {
    max-width: 800px;
  }

  .nav-dropdown-content a {
    word-break: break-word;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 1.5rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .hero-section {
    padding: 0; 
    margin: 0;
  }
  
  .mission-statement {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .update-banner {
    max-width: 1500px;
    align-self: center;
    padding: 1rem;
    margin: 2rem auto;
  }

  /* Force flex layout on the container holding the links */
.update-content-banner:first-of-type .dropdown-content.update-card-content {
    display: flex;
    justify-content: space-evenly;   /* Equal space around each link */
    align-items: center;
    gap: 0rem;
    padding: 1.5rem 3rem;
}


  /* Target the specific dropdown-content inside the Lunch and Learns section */
.update-content-banner:first-of-type .dropdown-content.update-card-content a {
    font-weight: bold;         /* Bold text */
    color: white;              /* Match existing dropdown text color */
    text-decoration: none;     /* Remove underline */
    font-size: 1.8rem;         /* Optional: larger text */
    padding: 0.8rem 1rem;      /* Add padding for clickable area */
    border-radius: 5px;        /* Rounded edges for hover effect */
    transition: background-color 0.3s ease;
}

.update-content-banner:first-of-type .dropdown-content.update-card-content a:hover {
    background-color: rgb(255, 255, 255);  /* Light hover effect */
    color: #004080;
}



  .update-content-banner {
    margin: 1rem;
    background: linear-gradient(135deg, #008deb, #004080);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  .individual-update-card {
    display: flex;
    align-items: center;      /* vertical alignment */
    justify-content: center;  /* horizontal centering */
    gap: 1rem;           /* space between text and image */
    text-align: center;
    margin: 1rem;
    color: white;
  }

  .individual-update-card h2 {
      margin: 0;
      color: white;                /* removes default spacing */
  }

  .individual-update-card img {
      max-width: 120px;          /* you can adjust size if needed */
      padding: 1rem;
      padding-bottom: 0rem;
      height: auto;
      display: block;
  }

  .update-content-banner:nth-of-type(1) .individual-update-card img {
    max-width: 140px;
    height: auto;
    padding: 0.3rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.update-content-banner .dropdown-header:hover {
  background-color: transparent;
}


  .dropdown-content.update-card-content {
    padding: 1.5rem;
    font-weight: normal;
    color: white;
  }

  .services-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1500px;
    margin: 2rem auto;
    padding: 1rem;
  }
  
  .service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  
  .service-header {
    background: #004080; 
    color: white;
    padding: 1rem;
    border-radius: 8px 8px 0 0;
    max-height: 99px;
  }
  
  .service-header h3 {
    margin: 0;
    color: white;
    font-size: 26px;
  }
  .service-header p {
    margin: 0;
    color: white;
  }
  
  .service-content {
    padding: 1rem;
    background: rgb(223, 223, 223);
  }
  
  .service-content ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .styled-list li {
    padding-top: 0.1rem;
    margin-bottom: 0.5rem; 
  }

  .no-bullets {
    list-style: none;
    padding-left: 0;
  }
  
  .service-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
  }
  
  .service-content li:last-child {
    border-bottom: none;
  }
  
  
  .topics-covered {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    background: #f0f0f0;
    padding: 2rem 1rem;
  }
  
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
  }

  .section-header {
    background-color: #0559a8;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
    margin-top: 1rem;
  }

/* Topics Covered Header */
.topics-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  font-size: 42px;
  padding: 1.5rem 0;
  color: white;
  background: linear-gradient(135deg, #008deb, #004080); 
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.topics-container {
  display: flex;
  justify-content: space-between;
  max-width: 95%; 
  margin: 0 auto; 
}

.topics-list-container {
  width: 45%; 
}

.topic-header {
  background: #0559a8;
  color: white;
  padding: 0.75rem;
  border-radius: 5px;
  text-align: left;
  margin-top: 1rem;
  cursor: pointer;
  font-weight: bold;
  width: 90%;
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topic-header:hover {
  background-color: rgba(19, 144, 228, 0.719); /* Light hover effect */
}

.topic-header .dropdown-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.topic-header.active .dropdown-icon {
  transform: rotate(180deg); 
}

.topic-content {
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 5px;
  display: none; 
  margin-top: 0.5rem;
  width: 90%; 
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.topic-content a {
  text-decoration: none;
  font-weight: bold;
  color: #0559a8;
  background: #ffffff;
  padding: 0.3rem;
  border-radius: 5px;
}


.dropdown-icon {
  float: right;
}

.dropdown-content.update-card-content {
  display: none; /* keep hidden by default */
}
  
  .topics-covered {
    margin-top: 4rem; 
    margin-bottom: 4rem; 
    background-color: #ffffff;
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .mission-text h2 {
    font-size: 2rem;
    text-align: center;
    color: rgb(255, 255, 255);
  }
  
  .mission-text p {
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    text-align: center;
    padding-top: 1rem;
  }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-container {
  position: relative; 
}

.nav-dropdown-content {
  display: none; 
  position: absolute; 
  left: auto;
  right: 0; 
  background-color: #f3f3f3; 
  padding: 10px;
  text-align: center; 
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  z-index: 1000; 
  white-space: nowrap; 
}

.nav-dropdown-content a {
  display: inline-block;
  text-align: center;
  color: #004080; 
  font-weight: bold;
  padding: 10px 0;
  text-decoration: none;
  list-style: none; 
}

.nav-dropdown-content a:hover {
  color: #002060; 
}

.nav-dropdown-header.active .nav-dropdown-icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.nav-dropdown-icon {
    transition: transform 0.3s ease;
}

.nav-dropdown-icon.rotated {
    transform: rotate(180deg);
}

  .dropdown-header {
    cursor: pointer; 
    user-select: none; 
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; 
    width: 100%; 
    cursor: pointer;
    padding: 0.5rem 1rem; 
  }
  
  .dropdown-header:hover {
    background-color: rgba(19, 144, 228, 0.719); 
  }

  .dropdown-content-nav {
    display: none;
    position: absolute;
    background: #004080;
    min-width: 200px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
    padding: 0.5rem 0;
    list-style: none;
}
  
  .dropdown-content {
    display: none; 
    text-align: left;
    padding: 1rem;
    padding-bottom: 0rem;
    font-weight: bold;
}

  .dropdown-header {
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .dropdown-header .dropdown-icon {
      margin-left: 10px;
      transition: transform 0.3s ease;
  }

  .dropdown-header.active .dropdown-icon {
      transform: rotate(180deg); 
  }

  .dropdown-icon {
    margin-left: 10px; 
    transition: transform 0.3s ease; 
  }

  .dropdown-header.active .dropdown-icon {
    transform: rotate(180deg);
  }

  .terms-section {
    width: 90%; 
    max-width: 900px; 
    margin: 3rem auto; 
    padding: 2rem; 
    background-color: #f8f8f8; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    text-align: center; 
}

.terms-section p {
  margin-bottom: 2rem;
}


  @media screen and (max-width: 768px) {
    .topics-container {
      flex-direction: column; 
      align-items: center; 
    }
  
    .topics-list-container {
      width: 100%; 
    }

    .services-section {
      display: flex;
      flex-direction: column;
      align-items: center; 
    }
  
    .service-card {
      width: 90%; 
      max-width: 500px; 
    }

    .service-card .styled-list li {
      font-size: 0.9rem; 
      line-height: 1.3; 
      margin-bottom: 0.3rem; /
    }
  
    .service-card .dropdown-content {
      padding: 0.5rem; 
    }

    .menu-icon {
      display: block; 
    }

    .header-container {
      flex-direction: row;
      justify-content: space-between; 
      width: 100%;
      padding: 0 1rem; 
    }

    .logo {
      font-size: 1.4rem; 
      padding-left: 0.5rem; 
  }

  .menu-icon {
      font-size: 1.8rem; 
  }

  .mission-image {
    height: auto;
    border-radius: 8px;
    padding-bottom: 2rem;
  }

  .mission-text h2 {
    font-size: 18px;
    min-width: 400px;
  }

  .mission-text p {
    padding-top: 1rem;
    font-size: 14px;
  }

  .mission-statement-container {
    padding: 3rem;
    gap: 0;
    
  }

  .topics-header {
    font-size: 22px;
  }
  

    .nav-links {
        display: none;
        flex-direction: column;
        background: #004080;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        border-radius: 0px;
        text-align: center;
        padding: 0.5rem 0;
        margin: 0;
        transition: all 0.3s ease-in-out;
    }

    .nav-links li {
        display: flex;
        justify-content: center; 
        align-items: center; 
        width: 100%;
        padding: 0.75rem 0; 
        margin: 0;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
        color: white;
        text-decoration: none;
        font-size: 1rem; 
        text-align: center; 
    }

    .nav-dropdown-header {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-dropdown-icon {
        margin-left: 8px; 
    }

    .nav-dropdown {
      width: 100%;
      position: relative;
  }

  .nav-dropdown-content {
      display: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%); 
      width: 60%; 
      background-color: #f3f3f3;
      border-radius: 5px;
      padding: 0;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      z-index: 1000;
  }

  .nav-dropdown-content li {
      padding: 8px 0; 
  }

  .nav-dropdown-content a {
      color: #004080;
      font-weight: bold;
      font-size: 0.9rem; 
      text-decoration: none;
  }
}

@media screen and (max-width: 450px) {

  .logo {
    padding: 0rem;
  }

  .mission-image {
    min-width: 200px;
  }

  
  .mission-statement-container {
    padding: 0rem;
  }

  .mission-text {
    justify-content: center;
    margin: 0px;
    padding: 0px;
  }

  .mission-text h2,
  .mission-text p {
    font-size: 1rem;
    padding: 0;
    padding-bottom: 2rem;
    max-width: 360px;
  }

  .mission-text h2 {
    padding-bottom: 1rem;
  }

  .dropdown-icon {
    margin-right: 1.5rem;
  }

  .topics-header {
    font-size: 1rem;
  }

  .header-container {
    padding: 0rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-header {
    max-height: 160px;
  }

  .nav-links {
    width: 100%;
  }

  .nav-dropdown-content {
    width: 80%;
}

/* ===== Video Player Ladning Page ===== */
.vp-body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.vp-header {
  padding: 16px;
  text-align: center;
}

.vp-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.vp-back {
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
}

.vp-wrap {
  max-width: 960px;
  margin: 32px auto;
  padding: 0 16px;
}

/* Responsive 16:9 container */
.vp-video-16x9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
}

.vp-player-slot {
  position: absolute;
  inset: 0;
}

.vp-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.vp-error {
  text-align: center;
  margin-top: 24px;
  color: #b00;
}



}


  