    /* === CORE VARIABLES === */
    :root {
      --shadow-card: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      --shadow-card-hover: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

    /* === FULL WIDTH BANNER === */
    .full-width-banner {
      width: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .full-width-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .banner-content {
      text-align: center;
      color: white;
      max-width: 800px;
      padding: 0 20px;
      position: absolute;
    }

    .banner-content h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 15px;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      letter-spacing: -0.02em;
    }

    .banner-content p {
      font-size: 1.3rem;
      opacity: 0.95;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      color: var(--white);
    }


    @media (max-width: 767px) {
      .full-width-banner {
        height: 200px;
      }

      .banner-content h1 {
        font-size: 1.8rem;
      }

      .banner-content p {
        font-size: 1rem;
      }
    }

    /* === THREE COLUMN LAYOUT === */
    .layout-three {
      display: flex;
      flex-wrap: wrap;
    }

    .sidebar-left-col {
      flex: 0 0 280px;
      display: flex;
      flex-direction: column;
      gap: 20px 25px;
    }

    @media (max-width: 991px) {
      .sidebar-left-col {
        flex: 1 1 auto;
        width: 100%;
      }
    }

    .sidebar-block {
      background: var(--white);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
      padding: 22px 20px;
      transition: box-shadow 0.3s ease;
    }

    .sidebar-block:hover {
      box-shadow: var(--shadow-card-hover);
    }

    .sidebar-block h3 {
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--brand-blue-dark);
      margin: 0 0 18px;
      padding-bottom: 14px;
      border-bottom: 1px dashed var(--brand-blue);
      letter-spacing: -0.3px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .sidebar-block h3 i {
      color: var(--brand-blue);
    }

    .sidebar-nav {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .sidebar-nav li {
      margin-bottom: 6px;
    }

    .sidebar-nav a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 12px;
      text-decoration: none;
      color: #1a5f9e;
      font-weight: 500;
      font-size: 15px;
      border-radius: 10px;
      transition: 0.2s;
      line-height: 1.4;
    }

    .sidebar-nav a i {
      color: var(--brand-blue);
      width: 20px;
      font-size: 1rem;
    }

    .sidebar-nav a:hover {
      background: var(--light-bg);
      color: var(--brand-blue);
    }

    .main-content {
      flex: 1;
      min-width: 0;
    }

    .content-card {
      background: var(--white);
      border: none;
      border-radius: var(--radius-card);
      margin-bottom: 28px;
      transition: box-shadow 0.3s ease;
      padding: 32px;
    }

    .content-card h2 {
      font-size: 1.9rem;
      font-weight: 600;
      color: var(--brand-blue-dark) !important;
      margin: 0 0 16px;
      letter-spacing: -0.02em;
    }

    .content-card p {
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    /* === UNIFIED CTA BUTTON STYLES === */
    .btn-primary,
    .enroll-banner,
    .contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--brand-blue);
      color: var(--white);
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 1rem;
      transition: 0.2s;
      border: none;
      cursor: pointer;
      flex-direction: row;
    }

    .btn-primary:hover,
    .enroll-banner:hover,
    .contact-btn:hover, 
    .contact-btn:focus {
      background: var(--brand-dark-blue);
      transform: translateY(-2px);
      color: var(--white);
      text-decoration: none;
      outline:none;
    }

    .btn-primary i,
    .enroll-banner i,
    .contact-btn i {
      font-size: 1rem;
    }

    /* Outline button style for downloads (keeping as is but unified spacing) */
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 1px solid var(--brand-blue);
      color: var(--brand-blue);
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      transition: 0.2s;
    }

    .btn-outline:hover {
      background: var(--brand-blue);
      color: var(--white);
      transform: translateY(-2px);
      text-decoration: none;
    }

    .download-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin: 28px 0 10px;
      align-items: center;
    }
    .download-links a:focus {
      text-decoration: none;
      outline:none;
    }

    /* === FEATURE CARDS - Learn More styling preserved === */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin: 32px 0 20px;
      justify-content: center;
    }

    @media (min-width: 1101px) {
      .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
      }
    }

    @media (max-width: 1100px) {
      .feature-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .feature-grid {
        grid-template-columns: 1fr;
      }
    }

    .feature-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 18px 20px;
      transition: all 0.3s ease;
      border: 1px solid var(--border-light);
      display: flex;
      flex-direction: column;
      min-height: 250px;
      box-shadow: var(--shadow-card);

      @media screen and (max-width: 767px) {
        min-height: auto;
      }
    }

    .feature-card:hover {
      box-shadow: var(--shadow-card);
      transform: translateY(-4px);
    }

    .feature-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, rgba(26, 95, 158, 0.1) 0%, rgba(44, 122, 123, 0.1) 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .feature-icon i {
      color: var(--brand-blue);
      font-size: 1.2rem;
    }

    .feature-header h4 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--brand-blue-dark);
      margin: 0;
      line-height: 1.3;
    }

    .feature-card p {
      color: var(--text-secondary);
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0 0 16px 0;
      flex: 1;
    }

    .feature-card p:last-child {
      flex: 0;
    }

    /* Learn More link styling - preserved as original */
    .feature-card .learn-more {
      color: var(--brand-blue);
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid var(--border-light);
      transition: all 0.2s;
      width: 100%;
      font-size: 0.9rem;
    }

    .feature-card .learn-more i {
      transition: transform 0.2s;
      font-size: 0.8rem;
    }

    .feature-card .learn-more:hover {
      gap: 10px;
      color: var(--brand-blue-dark);
    }

    .feature-card .learn-more:hover i {
      transform: translateX(4px);
    }

    /* === CONTACT SECTION === */
    .contact-section {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      margin: 20px 0 40px;
      padding: 24px 28px;
      border-left: 2px solid #1a5f9e;

      @media screen and (max-width: 767px) {
        padding: 10px 8px;
      }
    }

    .contact-wrapper {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    @media (min-width: 768px) {
      .contact-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .contact-wrapper .contact-info br {
      display: none;
    }

    @media (min-width: 600px) {
      .contact-wrapper .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 80px;
      }
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-secondary);
    }


    .contact-item i {
      color: var(--brand-blue);
      font-size: 1.2rem;
      width: 24px;
      text-align: center;
    }

    .contact-item .contact-text {
      display: flex;
      flex-direction: column;
    }

    .contact-item .contact-text strong {
      color: var(--brand-blue-dark);
      font-weight: 600;
      font-size: 0.95rem;
    }

    .contact-item .contact-text span {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    .contact-action {
      flex-shrink: 0;
    }

    .subpage-bg {
      background-color: #f2f5f9;
    }

    /* ===============================
       THIN HERO with BANNER IMAGE
    ================================ */
    .thin-hero {
      height: 220px;
      background: linear-gradient(95deg, rgba(10, 42, 68, 0.85) 0%, rgba(26, 95, 158, 0.75) 100%),
        url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
      background-size: cover;
      background-position: center;
      color: var(--white);
      display: flex;
      align-items: center;
      margin-top: 70px;
      position: relative;
    }

    .thin-hero .wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
      text-align: center;
    }

    .thin-hero h1 {
      margin: 0 0 8px;
      font-size: 2.4rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .thin-hero p {
      margin: 0;
      font-size: 1.2rem;
      opacity: 0.95;
      color: var(--white);
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    }

    /*  FAQ CSS*/
    /* Layout */
    .faq-layout {
      display: flex;
      gap: 30px;
      align-items: flex-start;
      margin-bottom: 40px;
    }

    /* FAQ Content (Left) */
    .faq-content {
      flex: 1;
      min-width: 0;
      padding: 0px 32px;
      background-color: var(--white);
      border-radius: 0 0 6px 6px;
    }

    /* FAQ Header */
    .faq-header {
      margin-bottom: 24px;
    }

    .faq-header h2 {
      font-size: 1.7rem;
      font-weight: 600;
      color: var(--brand-dark-blue) !important;
      letter-spacing: -0.02em;
    }

    .faq-header p {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin: 0;
    }

    /* Sidebar */
    .sidebar,
    .faq-sidebar {
      flex: 0 0 280px;
      background-color: var(--white);
      border-radius: 6px;
      padding: 20px;
      position: sticky;
      top: 90px;
    }

    .sidebar h3,
    .faq-sidebar h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--brand-blue);
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--brand-primary);
      margin-top: 0px;
    }

    .sidebar-links {
      list-style: none;
      padding-left: 0;
    }

    .sidebar-links li {
      margin-bottom: 6px;
    }

    .sidebar-links a {
      display: block;
      padding: 2px 10px;
      color: var(--black);
      text-decoration: none;
      font-size: 0.9rem;
    }

    .sidebar-links a:hover {
      background: #eef4ff;
      color: var(--brand-blue-dark);
      text-decoration: none;
    }

    .sidebar-links a.active {
      background: var(--brand-primary);
      color: var(--white);
    }

    .sidebar-info-box {
      margin-top: 20px;
      padding: 10px;
      background: #fff5f5;
      border-left: 4px solid #e53e3e;
      border-radius: 4px;
    }

    .sidebar-info-box h4 {
      font-size: 14px;
      font-weight: 700;
      color: #c53030;
      margin-bottom: 8px;
    }

    .sidebar-info-box p {
      font-size: 13px;
      color: #742a2a;
      line-height: 1.6;
      margin: 0;
    }

    /* FAQ Section */
    .faq-section {
      min-width: 0;
    }

    .faq-section br {
      display: none;
    }

    /* FAQ Lists */
    .faq-section ul {
      list-style: disc;
      padding-left: 24px;
      margin: 0 20px 18px;
    }

    .faq-section ul li {
      font-size: 16px;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 6px;
    }

    .faq-reference ul {
      list-style: disc;
      padding-left: 24px;
    }

    .faq-reference ul li {
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 6px;
    }

    .faq-reference ul li a {
      color: var(--brand-blue);
      text-decoration: none;
    }

    .faq-reference h3 {
      padding: 10px 0;
    }

    /* Accordion Base */
    .accordion-item {
      border-bottom: 1px solid #e1e6ef;
      overflow: hidden;
    }

    /* Header Button */
    .accordion-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 5px 20px;
      background: transparent;
      border: none;
      outline: none;
      text-align: left;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .accordion-header:hover {
      background: #eef4ff;
    }

    /* +/- Icon */
    .accordion-header .icon {
      margin-left: auto;
      font-size: 30px;
      color: #898D8D;
      transition: transform 0.3s ease;
      font-weight: normal;
    }

    /* Content Panel */
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      background: var(--white);
      transition: max-height 0.3s ease;
    }

    .accordion-content p {
      padding: 10px 20px;
      margin: 0;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* Active State */
    .accordion-item.active .accordion-header .icon {
      transform: rotate(45deg);
    }

    .accordion-item.active .accordion-header {
      background-color: var(--brand-primary);
      color: var(--white);
    }

    /* Page Header */
    .page-header-intro {
      padding: 0px 24px;
      text-align: left;
    }

    .page-header-intro h2 {
      margin-bottom: 16px;
      max-width: 800px;
      color: var(--black) !important;
    }

    .page-header-intro p {
      font-size: 16px;
      margin: 0;
      line-height: 1.7;
      color: var(--text-secondary);
    }

    .faq-reference h2 {
      color: var(--black) !important;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .faq-layout {
        flex-direction: column;
      }

      .sidebar,
      .faq-sidebar {
        flex: auto;
        width: 100%;
        position: static;
      }

      .faq-content {
        width: 100%;
      }
    }

    .page-template-subpage-layout4 {
      background-color: var(--body-bg);
    }