.content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 40px;
  box-sizing: border-box;
}

/* Main article content */
.main-content {
  flex: 3;
  min-width: 0;
}

/* Right sidebar guide */
.content-guide {
  flex: 1;
  position: sticky;
  top: 20px;
  background-color: #fff;
  padding: 20px;
  border-left: 2px solid #eee;
  font-size: 0.95rem;
}

.content-guide h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #D78955;
}

.content-guide ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-guide li {
    margin-bottom: 10px;
}

.content-guide a {
    text-decoration: none;
    color: #203E56;
    font-weight: 500;
}

.content-guide a:hover {
    color: #3182ce;
}

.content-guide ul li a.active {
  font-weight: bold;
  color: #3182ce;
  border-left: 3px solid #007bff;
  padding-left: 8px;
}

@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
  }

  .content-guide {
    display: none;
  }
}

/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Fixed height to contain overlay and video */
    overflow: hidden;
    text-align: center;
    color: white;
    background-color: #203E56;
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    box-sizing: border-box;
    text-align: center;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
    line-height: 1.4;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.hero-buttons a {
    background: #203E56;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.hero-buttons a:hover {
    background: #c1733d;
    color: white;
}

/* LABELED ICONS SECTION */
.labeled-icons {
    background-color: #203E56;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 20px;
    gap: 20px;
}

.labeled-icons > div {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 250px;
    justify-content: center;
}

.labeled-icons img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: invert(100%) brightness(200%);
}

.labeled-icons p {
    margin: 0;
    color: white;
    font-size: 22px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
    .hero-overlay {
        padding: 50px 15px;
    }

    .hero-overlay h1 {
        font-size: 1.6rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .hero-buttons a {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .hero-overlay {
        height: auto;
        min-height: 100vh;
        padding: 60px 15px 40px;
    }

    .hero-overlay h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .hero-overlay p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 1rem;
    }
}

.stats-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
  padding: 40px 20px 10px;
}


.heading-orange {
    text-transform: uppercase;
    color: #D78955;
}

.heading-blue {
    line-height: 1.2;
    color: #203E56;
}

.faq-section {
      max-width: 1200px;
      margin: auto;
      margin-bottom: 25px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    @media (min-width: 768px) {
      .faq-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .faq-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      overflow: hidden;
      cursor: pointer;
    }

    .faq-header {
      padding: 18px 5px;
      font-weight: 600;
      font-size: 1rem;
      line-height: 1.2;
      color: #203E56;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .faq-arrow {
      transition: transform 0.3s ease;
    }

    .faq-card.open .faq-arrow {
      transform: rotate(90deg);
    }

    .faq-content {
      padding: 0 24px 24px;
      font-size: 0.95rem;
      line-height: 1.6;
      display: none;
    }

    .faq-card.open .faq-content {
      display: block;
    }

    .faq-link {
      color: #3182ce;
      text-decoration: underline;
      font-weight: 500;
    }

    .faq-link:hover {
      text-decoration: none;
    }

    .stats-image {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: 50%;
      height: auto;
    }

.table-container {
      max-width: 1000px;
      margin: 0 auto;
      background-color: #ffffff;
      border-radius: 10px;
      overflow-x: auto;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px;
    }

    thead {
      background-color: #203E56;
      color: white;
    }

    th, td {
      padding: 15px 20px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }

    tbody tr:nth-child(even) {
      background-color: #f2f2f2;
    }

    @media (max-width: 768px) {
      h2 {
        font-size: 24px;
      }

      th, td {
        padding: 12px 15px;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      table {
        min-width: 100%;
        font-size: 13px;
      }

      th, td {
        padding: 10px 12px;
      }
    }