.schools-page {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 45%, #f5f4f8 100%);
  }

  /* Hero Section - Vibrant Purple-Blue Gradient */
  .schools-hero {
    background: linear-gradient(135deg, #143a6b 0%, #1a4f90 30%, #1e568f 60%, #143a6b 100%);
    padding-top: 110px;
    padding-bottom: 60px;
    position: relative;
  }

  .schools-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(26, 79, 144, 0.2), transparent 60%),
                radial-gradient(circle at bottom right, rgba(125, 161, 76, 0.18), transparent 55%);
    z-index: 0;
    pointer-events: none;
  }

  .schools-hero .container {
    position: relative;
    z-index: 2;
  }

  .schools-hero-intro {
    position: relative;
    border-radius: 28px;
    padding: 2.75rem 2.5rem;
    background: linear-gradient(135deg, 
      #1A4F90 0%, 
      #2a669f 30%,
      #5f8c3b 60%,
      #7DA14C 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 24px 60px rgba(15, 12, 32, 0.6), 
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 8px 32px rgba(26, 79, 144, 0.4),
                0 4px 16px rgba(125, 161, 76, 0.3);
    height: 100%;
    overflow: hidden;
  }

  .schools-hero-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }

  .schools-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
  }

  .schools-page .caption-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .schools-page .caption-title {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .schools-page .caption-text {
    color: rgba(255, 255, 255, 0.98);
    max-width: 100%;
    line-height: 1.7;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .text-white-75 {
    color: rgba(255, 255, 255, 0.75);
  }


  .hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
    color: #2a2538;
  }

  .hero-list li {
    display: flex;
    align-items: flex-start;
    line-height: 1.55;
  }

  .hero-list i {
    margin-top: 0.1rem;
  }

  .schools-sidebar {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    padding: 2rem;
    background: #ffffff;
  }

  .sidebar-header {
    margin-bottom: 1.75rem;
  }

  .sidebar-nav {
    display: grid;
    gap: 0.75rem;
  }

  .sidebar-link {
    border: none;
    background: #f5f4f8;
    color: #1f1b2d;
    font-weight: 600;
    text-align: left;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.25s ease;
    font-size: 0.95rem;
  }

  .sidebar-link i {
    font-size: 1rem;
    transition: transform 0.25s ease;
  }

  .sidebar-link:hover,
  .sidebar-link:focus {
    background: linear-gradient(135deg, rgba(26, 79, 144, 0.12), rgba(125, 161, 76, 0.12));
    color: #1A4F90;
    outline: none;
  }

  .sidebar-link.active {
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(26, 79, 144, 0.28);
  }

  .sidebar-link.active i {
    transform: translateX(4px);
  }

  .sidebar-footer {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(15, 12, 32, 0.08);
  }

  .schools-alert {
    border-radius: 16px;
  }

  .schools-section {
    display: none;
  }

  .schools-section.active {
    display: block;
  }

  .schools-detail {
    border-radius: 24px;
    background: #ffffff;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 12, 32, 0.08);
  }

  .section-media {
    background: #f8f9fb;
    position: relative;
  }

  .section-media img {
    width: 100%;
    display: block;
    max-height: 360px;
    object-fit: cover;
  }

  .section-body {
    padding: 2.5rem;
  }

  .cta-box {
    display: block;
    background: linear-gradient(135deg, rgba(26, 79, 144, 0.08), rgba(41, 199, 199, 0.08));
    border: 1px solid rgba(26, 79, 144, 0.12);
    border-radius: 18px;
    padding: 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    color: inherit;
  }

  .cta-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 12, 32, 0.12);
  }

  .cta-box .btn {
    pointer-events: none;
    margin-top: 0.5rem;
  }

  .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .section-lead {
    font-size: 1.05rem;
    color: #4f4c5a;
    margin-bottom: 1.5rem;
  }

  .section-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
  }

  .section-list li {
    display: flex;
    align-items: flex-start;
    line-height: 1.55;
    color: #2a2538;
  }

  .section-list i {
    margin-top: 0.25rem;
  }

  .section-cards {
    display: grid;
    gap: 1rem;
  }

  .mini-card {
    background: #f5f4f8;
    border-radius: 16px;
    padding: 1rem 1.2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }

  .mini-label {
    display: block;
    font-weight: 600;
    color: #1A4F90;
    margin-bottom: 0.35rem;
  }

  .btn-primary {
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(26, 79, 144, 0.28);
  }

  .btn-primary:hover {
    box-shadow: 0 16px 32px rgba(26, 79, 144, 0.35);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 1199px) {
    .schools-hero {
      padding-top: 100px;
    }

    .caption-title {
      font-size: 2rem;
    }
  }

  @media (max-width: 991px) {
    .schools-hero {
      padding-top: 90px;
      padding-bottom: 40px;
    }

    .schools-hero-intro {
      border-radius: 22px;
    }

    .schools-sidebar {
      border-radius: 20px;
      margin-top: 0.5rem;
    }

    .sidebar-nav {
      grid-auto-flow: column;
      grid-auto-columns: minmax(200px, 1fr);
      overflow-x: auto;
      padding-bottom: 0.5rem;
      margin-bottom: 0.75rem;
      scrollbar-width: thin;
    }

    .sidebar-link {
      white-space: nowrap;
    }

    .sidebar-footer {
      text-align: center;
    }

    .section-media img {
      max-height: 300px;
    }

    .schools-detail {
      border-radius: 20px;
    }
  }

  @media (max-width: 575px) {
    .caption-title {
      font-size: 1.7rem;
    }

    .caption-text {
      font-size: 0.95rem;
    }

    .schools-hero-intro {
      padding: 2rem 1.75rem;
    }

    .section-body {
      padding: 1.75rem;
    }

    .section-title {
      font-size: 1.45rem;
    }
  }

  @media (max-width: 480px) {
    .section-media img {
      max-height: 240px;
    }
  }