    /* ─── Reset & Base ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --blue:       #FFA800;
      --blue-dark:  #E59700;
      --blue-light: #FFF5E5;
      --white:      #F8F8F8;
      --grey-50:    #EDEDED;
      --grey-100:   #EFF1F5;
      --grey-200:   #DDE1EA;
      --grey-400:   #9BA4B5;
      --grey-600:   #5C6478;
      --grey-800:   #2B3143;
      --grey-900:   #181D2D;
      --font-display: 'Montserrat', sans-serif;
      --font-body:    'Montserrat', sans-serif;
      --radius:     12px;
      --radius-lg:  20px;
      --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
      --shadow-md:  0 4px 16px rgba(0,0,0,.08);
      --shadow-lg:  0 8px 32px rgba(0,0,0,.10);
    }

    /* ─── Global Animation Utilities ─── */
    html { scroll-behavior: smooth; }
    .fade-in-up {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }
    .fade-in-up.is-visible { opacity: 1; transform: translateY(0); }

    body { font-family: var(--font-body); color: var(--grey-800); background: var(--white); line-height: 1.6; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ─── Global Page Header (Banners) ───────────────────────────── */
    .page-header {
      background: #2a2e39 !important;
      padding-top: 180px !important;
      padding-left: 40px !important;
      padding-right: 40px !important;
      text-align: center;
      color: #fff !important;
    }
    .page-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 800;
      color: #fff !important;
      margin-bottom: 16px;
    }
    .page-subtitle {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.8) !important;
      max-width: 600px;
      margin: 0 auto;
    }
    .page-header .section-label {
      background: transparent !important;
      color: var(--blue) !important;
      border: 1px solid var(--blue) !important;
      border-radius: 4px !important;
      font-weight: 300 !important;
      font-family: 'Montserrat', sans-serif !important;
    }

    /* ─── Navbar ─────────────────────────────────────────────────── */
    .navbar {
      position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 100;
      width: 80%; max-width: 1200px;
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
      border-radius: 100px;
      padding: 0 32px;
      height: 68px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      flex-shrink: 0;
    }
    .nav-logo .logo-box {
      width: 42px; height: 42px; border-radius: 10px;
      background: var(--blue);
      display: flex; align-items: center; justify-content: center;
    }
    .nav-logo .logo-box span {
      font-family: var(--font-display); font-weight: 800; font-size: 14px; color: #fff; letter-spacing: -.5px;
    }
    .nav-logo .logo-text { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--grey-900); line-height: 1.2; }
    .nav-logo .logo-sub  { font-size: 10px; font-weight: 400; color: var(--grey-400); }

    .nav-menu {
      display: flex; align-items: center; gap: 4px;
      list-style: none;
    }
    .nav-menu > li { position: relative; }
    .nav-menu > li > a,
    .nav-menu > li > button {
      font-size: 13.5px; font-weight: 500; color: var(--grey-600);
      padding: 8px 12px; border-radius: 8px;
      display: flex; align-items: center; gap: 4px;
      transition: color .2s, background .2s;
      background: none; border: none; cursor: pointer; font-family: var(--font-body);
    }
    .nav-menu > li > a:hover,
    .nav-menu > li > button:hover,
    .nav-menu > li.active > a { color: var(--blue); background: var(--blue-light); }
    .nav-menu > li > button svg { transition: transform .2s; }
    .nav-menu > li:hover > button svg { transform: rotate(180deg); }

    .dropdown {
      position: absolute; top: calc(100% + 8px); left: 50%;
      background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius);
      box-shadow: var(--shadow-lg); min-width: 170px; padding: 6px;
      opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s;
      transform: translateX(-50%) translateY(-6px);
    }
    .dropdown::before {
      content: ''; position: absolute; top: -12px; left: 0; width: 100%; height: 12px;
    }
    .nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .dropdown a { display: block; font-size: 13px; font-weight: 500; color: var(--grey-600); padding: 8px 12px; border-radius: 6px; transition: background .15s, color .15s; }
    .dropdown a:hover { background: var(--blue-light); color: var(--blue); }

    .nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .btn-ghost {
      font-size: 13px; font-weight: 600; color: var(--blue);
      border: 1.5px solid var(--blue); padding: 7px 14px; border-radius: 8px;
      transition: background .2s, color .2s; cursor: pointer; background: none; font-family: var(--font-body);
    }
    .btn-ghost:hover { background: var(--blue); color: #fff; }
    .btn-arch {
      font-size: 12px; font-weight: 600; color: var(--grey-600);
      border: 1.5px solid var(--grey-200); padding: 7px 12px; border-radius: 8px;
      transition: border-color .2s, color .2s; white-space: nowrap; cursor: pointer; background: none; font-family: var(--font-body);
    }
    .btn-arch:hover { border-color: var(--grey-400); color: var(--grey-800); }

    /* ─── Section wrapper ───────────────────────────────────────── */
    .section { padding: 80px 40px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-label {
      display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--blue);
      background: var(--blue-light); padding: 4px 10px; border-radius: 20px; margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: var(--grey-900); line-height: 1.25;
    }
    .section-subtitle { font-size: 16px; color: var(--grey-600); margin-top: 10px; max-width: 560px; }

    /* ─── HERO ──────────────────────────────────────────────────── */
    #home {
      background: linear-gradient(135deg, #f0f7ff 0%, #FFF5E5 50%, #f7faff 100%);
      padding: 140px 40px 80px;
      position: relative; overflow: hidden;
    }
    #home::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 70% 40%, rgba(255,168,0,.10) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
      color: var(--blue); background: var(--blue-light); padding: 5px 12px; border-radius: 20px;
      margin-bottom: 20px;
    }
    .hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); display: inline-block; }
    .hero-heading {
      font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 800;
      color: var(--grey-900); line-height: 1.15; margin-bottom: 20px;
    }
    .hero-heading .accent { color: var(--blue); }
    .hero-desc { font-size: 16px; color: var(--grey-600); margin-bottom: 32px; max-width: 480px; }
    .hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--blue); color: #fff;
      font-size: 14px; font-weight: 700; font-family: var(--font-body);
      padding: 13px 24px; border-radius: 10px; border: none; cursor: pointer;
      box-shadow: 0 4px 16px rgba(255,168,0,.35);
      transition: background .2s, transform .2s, box-shadow .2s;
    }
    .btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,168,0,.4); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13.5px; font-weight: 600; color: var(--grey-600); font-family: var(--font-body);
      border: 1.5px solid var(--grey-200); background: #F8F8F8;
      padding: 12px 20px; border-radius: 10px; cursor: pointer;
      transition: border-color .2s, color .2s;
    }
    .btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

    .hero-visual {
      position: relative;
    }
    .hero-card {
      background: #F8F8F8; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
      overflow: hidden;
    }
    .hero-card-header {
      background: var(--blue); padding: 20px 24px;
      display: flex; align-items: center; gap: 10px;
    }
    .hero-card-header h3 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff; }
    .hero-card-header p { font-size: 11px; color: rgba(255,255,255,.75); margin-top: 2px; }
    .hero-card-dots { display: flex; gap: 5px; }
    .hero-card-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); }
    .hero-card-dots span:first-child { background: #FF5F57; }
    .hero-card-dots span:nth-child(2) { background: #FEBC2E; }
    .hero-card-dots span:nth-child(3) { background: #28C840; }
    .hero-card-body { padding: 24px; }
    .acpe-badge {
      display: flex; align-items: center; justify-content: space-between;
      background: var(--grey-50); border-radius: 10px; padding: 14px 16px; margin-bottom: 12px;
    }
    .acpe-badge .badge-label { font-size: 11px; font-weight: 600; color: var(--grey-400); text-transform: uppercase; letter-spacing: .08em; }
    .acpe-badge .badge-val { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--blue); }
    .acpe-badge .badge-sub { font-size: 11px; color: var(--grey-400); }
    .progress-row { margin-top: 12px; }
    .progress-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--grey-400); margin-bottom: 5px; }
    .progress-bar { height: 6px; background: var(--grey-100); border-radius: 10px; overflow: hidden; }
    .progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue), #FFC24D); border-radius: 10px; animation: grow 1.6s ease forwards; }
    @keyframes grow { from { width: 0; } }
    .country-flags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
    .flag-chip {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11px; font-weight: 600; color: var(--grey-600);
      background: var(--grey-50); border: 1px solid var(--grey-200);
      padding: 4px 10px; border-radius: 20px;
    }

    /* ─── STATISTICS ─────────────────────────────────────────────── */
    #statistics { background: var(--grey-900); position: relative; overflow: hidden; }
    .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: rgba(255,255,255,.06); border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px; }
    .stat-card {
      background: transparent; padding: 40px 36px;
      display: flex; gap: 20px; align-items: flex-start;
      transition: background .2s;
    }
    .stat-card:hover { background: rgba(255,255,255,0.03); }
    .stat-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(255,168,0,.15);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .stat-icon svg { width: 26px; height: 26px; }
    .stat-label { font-size: 12px; font-weight: 600; color: var(--grey-400); text-transform: uppercase; letter-spacing: .08em; }
    .stat-value { font-family: var(--font-display); font-size: 46px; font-weight: 800; color: #fff; line-height: 1; margin: 6px 0 4px; }
    .stat-value .stat-accent { color: var(--blue); }
    .stat-sub { font-size: 13px; color: var(--grey-400); }
    .stats-section-header .section-title { color: #fff; }
    .stats-section-header .section-subtitle { color: var(--grey-400); }
    .stats-section-header .section-label { background: rgba(255,168,0,.2); }

    /* ─── HOW TO REGISTER ───────────────────────────────────────── */
    #register { background: var(--grey-50); }
    .register-top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
    .benefit-cards { display: flex; flex-direction: column; gap: 16px; }
    .benefit-card {
      background: #F8F8F8; border-radius: var(--radius); border: 1.5px solid var(--grey-200);
      padding: 20px 22px; display: flex; align-items: flex-start; gap: 16px;
      transition: border-color .2s, box-shadow .2s;
    }
    .benefit-card:hover { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(255,168,0,.07); }
    .benefit-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--blue-light); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .benefit-icon svg { width: 22px; height: 22px; }
    .benefit-title { font-weight: 700; font-size: 15px; color: var(--grey-900); margin-bottom: 4px; }
    .benefit-desc { font-size: 13px; color: var(--grey-600); }
    .download-btn {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 20px;
      background: var(--blue-light); color: var(--blue);
      font-size: 13px; font-weight: 700; padding: 11px 18px; border-radius: 9px;
      border: 1.5px solid rgba(255,168,0,.25); transition: background .2s;
    }
    .download-btn:hover { background: #d4ebff; }

    .requirements-panel {
      background: #F8F8F8; border-radius: var(--radius-lg); border: 1.5px solid var(--grey-200);
      padding: 28px;
    }
    .requirements-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--grey-900); margin-bottom: 20px; }
    .req-item {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 13px 0; border-bottom: 1px solid var(--grey-100);
    }
    .req-item:last-child { border-bottom: none; }
    .req-num {
      width: 26px; height: 26px; border-radius: 8px;
      background: var(--blue); color: var(--grey-900);
      font-size: 12px; font-weight: 700; font-family: var(--font-display);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
    }
    .req-text { font-size: 13.5px; color: var(--grey-600); line-height: 1.55; }
    .req-text strong { color: var(--grey-800); }

    /* Flow diagram */
    .flow-section { margin-top: 56px; }
    .flow-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--grey-900); margin-bottom: 24px; text-align: center; }
    .flow-svg-wrap {
      background: #F8F8F8; border-radius: var(--radius-lg); border: 1.5px solid var(--grey-200);
      padding: 32px; overflow-x: auto;
    }
    .flow-diagram {
      display: flex; align-items: flex-start; justify-content: center;
      gap: 0; flex-wrap: nowrap; min-width: 900px;
    }
    .flow-step {
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      width: 120px; flex-shrink: 0;
    }
    .flow-circle {
      width: 64px; height: 64px; border-radius: 50%;
      background: var(--blue); color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 14px rgba(255,168,0,.3);
    }
    .flow-circle svg { width: 28px; height: 28px; }
    .flow-step-label { font-size: 11px; font-weight: 600; color: var(--grey-600); text-align: center; line-height: 1.35; }
    .flow-arrow {
      font-size: 24px; color: var(--blue); flex-shrink: 0; margin: 0 4px; padding-top: 36px;
    }
    .flow-step-num {
      font-size: 10px; font-weight: 700; color: var(--blue); letter-spacing: .06em; text-transform: uppercase;
    }

    /* ─── NEWS ──────────────────────────────────────────────────── */
    #news { background: var(--white); }
    .news-grid { display: grid; grid-template-columns: 3fr 1fr; gap: 24px; margin-top: 48px; }
    .news-main-card {
      background: #F8F8F8; border-radius: var(--radius-lg); border: 1.5px solid var(--grey-200);
      overflow: hidden; transition: box-shadow .2s;
    }
    .news-main-card:hover { box-shadow: var(--shadow-lg); }
    .news-main-img {
      height: 260px; overflow: hidden;
      background: linear-gradient(135deg, #FFF5E5 0%, #FFDCA8 100%);
      display: flex; align-items: center; justify-content: center; position: relative;
    }
    .news-main-img .news-tag {
      position: absolute; top: 16px; left: 16px;
      background: var(--blue); color: #fff; font-size: 11px; font-weight: 700;
      padding: 4px 10px; border-radius: 20px;
    }
    .news-main-body { padding: 28px; }
    .news-date { font-size: 11px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
    .news-main-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--grey-900); line-height: 1.3; margin-bottom: 12px; }
    .news-main-desc { font-size: 14px; color: var(--grey-600); line-height: 1.65; margin-bottom: 20px; }
    .news-read-more {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 700; color: var(--blue); transition: gap .2s;
    }
    .news-read-more:hover { gap: 10px; }

    .news-sidebar { display: flex; flex-direction: column; gap: 16px; }
    .news-side-card {
      background: #F8F8F8; border-radius: var(--radius); border: 1.5px solid var(--grey-200);
      overflow: hidden; transition: box-shadow .2s;
    }
    .news-side-card:hover { box-shadow: var(--shadow-md); }
    .news-side-img {
      height: 130px; background: linear-gradient(135deg, #EFF1F5 0%, #DDE1EA 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .news-side-body { padding: 14px 16px; }
    .news-side-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--grey-900); line-height: 1.35; margin-bottom: 6px; }
    .news-side-date { font-size: 11px; color: var(--grey-400); }
    .news-side-desc { font-size: 12px; color: var(--grey-600); margin-top: 6px; line-height: 1.5; }

    /* SVG illustration placeholders */
    .illus-news { opacity: .35; }

    /* ─── FOOTER ─────────────────────────────────────────────────── */
    footer {
      background: var(--grey-900);
      padding: 40px 40px 24px;
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-top { display: flex; align-items: center; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .footer-logo-img {
      width: 56px; height: 56px; border-radius: 12px; background: transparent;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .footer-logo-text h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff; }
    .footer-logo-text p { font-size: 12px; color: var(--grey-400); margin-top: 2px; }
    .footer-bottom { padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: 12px; color: var(--grey-400); }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { font-size: 12px; color: var(--grey-400); transition: color .2s; }
    .footer-links a:hover { color: var(--blue); }

    /* ─── Mobile ─────────────────────────────────────────────────── */
    .mobile-menu-btn {
      display: none;
      background: none; border: none; padding: 8px; cursor: pointer; color: var(--grey-800);
      margin-left: auto;
    }

    @media (max-width: 900px) {
      .mobile-menu-btn { display: block; }
      .navbar { 
        padding: 0 20px; width: 95%; top: 10px; border-radius: 16px; 
        flex-wrap: wrap; height: auto; min-height: 68px; 
      }
      .nav-logo { margin: 12px 0; }
      
      .nav-menu, .nav-actions { 
        display: none;
        width: 100%;
      }
      .navbar.is-open .nav-menu { 
        display: flex; flex-direction: column; align-items: flex-start; 
        gap: 8px; padding-bottom: 16px; 
      }
      .navbar.is-open .nav-actions { 
        display: flex; flex-direction: column; align-items: flex-start; 
        gap: 12px; padding-bottom: 20px; border-top: 1px solid var(--grey-200); padding-top: 16px; 
      }
      .navbar.is-open .btn-ghost, .navbar.is-open .btn-arch { width: 100%; text-align: center; justify-content: center; }

      .dropdown {
        position: static; box-shadow: none; border: none; padding: 0 0 0 16px; background: transparent;
        opacity: 1; visibility: visible; transform: none; display: none; margin-top: 4px;
      }
      .nav-menu > li { width: 100%; }
      .nav-menu > li > a, .nav-menu > li > button { width: 100%; justify-content: space-between; }
      .nav-menu > li.active-dropdown .dropdown { display: block; }
      
      /* Global Resets */
      #home, .section, .page-header { padding: 120px 20px 60px !important; }
      .page-title, .hero-heading, .section-title { font-size: clamp(28px, 8vw, 36px) !important; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { display: none; }
      .register-top { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .stats-grid { grid-template-columns: 1fr; }
      
      /* About Grid Tweaks */
      .about-grid, .history-grid, .members-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
      
      /* AA Register Tweaks */
      .search-panel { flex-direction: column; align-items: stretch; }
      .search-group { width: 100%; }
      .table-wrapper, .flow-svg-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      
      /* Contact Page Tweaks */
      .contact-container { grid-template-columns: 1fr !important; margin-top: 0 !important; }
    }
  </style>




