    :root {
      --icpna-blue: #003DA5;
      --icpna-red:  #E31837;
      --icpna-light-blue: #00AEEF;
      --icpna-dark: #001B5E;
      --icpna-gray: #F5F7FA;
      --icpna-text: #222;
    }

    * { box-sizing: border-box; }

    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--icpna-text);
      overflow-x: hidden;
    }

    /* ─── HERO ─────────────────────────────────────────── */
    .hero {
      position: relative;
      background: linear-gradient(135deg, var(--icpna-dark) 0%, var(--icpna-blue) 55%, var(--icpna-light-blue) 100%);
      /* min-height: 480px; */
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1200&auto=format&fit=crop&q=60') center/cover no-repeat;
      opacity: .18;
    }

    .hero-content { position: relative; z-index: 2; padding: 60px 0 40px; }

    .hero-title {
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 900;
      line-height: 1.05;
      color: #fff;
      text-transform: uppercase;
    }

    .hero-title .cursive {
      font-family: 'Dancing Script', cursive;
      font-size: 1.25em;
      color: #fff;
      display: block;
      text-transform: none;
      line-height: 1;
    }

    .hero-cert {
      background: #fff;
      border-radius: 12px;
      padding: 20px 28px;
      max-width: 340px;
      box-shadow: 0 20px 60px rgba(0,0,0,.35);
      position: relative;
    }

    .hero-cert .cert-header {
      font-size: .65rem;
      font-weight: 700;
      color: var(--icpna-blue);
      text-transform: uppercase;
      letter-spacing: 1px;
      border-bottom: 2px solid var(--icpna-light-blue);
      padding-bottom: 8px;
      margin-bottom: 10px;
    }

    .hero-cert p { font-size: .78rem; color: #444; margin: 0; line-height: 1.5; }
    .hero-cert .cert-italic { font-style: italic; font-size: .72rem; color: #777; margin-top: 10px; }
    .hero-cert .cert-logo {
      position: absolute; top: 14px; right: 16px;
      font-size: 1rem; font-weight: 900;
      color: var(--icpna-blue); letter-spacing: -1px;
    }

    .hero-student {
      position: absolute;
      right: 5%;
      bottom: 0;
      height: 105%;
      max-height: 520px;
      object-fit: contain;
      filter: drop-shadow(-8px 0 20px rgba(0,0,0,.4));
    }

    /* ICPNA corner badge */
    .icpna-corner {
      position: absolute; top: 20px; right: 20px;
      background: rgba(255,255,255,.12);
      border: 2px solid rgba(255,255,255,.4);
      border-radius: 8px;
      padding: 6px 14px;
      font-size: 1.3rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1px;
    }

    /* ─── SECTION TITLES ──────────────────────────────── */
    .section-title {
      font-size: clamp(1.3rem, 3vw, 1.9rem);
      font-weight: 800;
      color: var(--icpna-blue);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .section-title .stars { color: var(--icpna-light-blue); font-size: .85em; }

    /* ─── PROGRAM CARDS ───────────────────────────────── */
    .prog-section { background: var(--icpna-gray); padding: 60px 0; }
    /* .spec-section { background: linear-gradient(160deg, var(--icpna-blue) 0%, var(--icpna-dark) 100%); padding: 60px 0; } */
    .spec-section { background-image: url("../images/icpna-back.jpg");background-position: center; background-repeat: no-repeat; background-size: cover; background-attachment: fixed; padding: 60px 0; }
    .spec-section .section-title { color: #fff; }
    .workshop-section { background: var(--icpna-gray); padding: 60px 0; }

    .program-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 30px rgba(0,61,165,.12);
      transition: transform .25s, box-shadow .25s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .program-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 50px rgba(0,61,165,.22);
    }

    .card-img-wrap {
      position: relative;
      height: auto;
      /* height: auto; */
      background: linear-gradient(135deg, var(--icpna-blue), var(--icpna-light-blue));
      overflow: hidden;
    }

    .card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .85;
      transition: opacity .3s;
    }

    .program-card:hover .card-img-wrap img { opacity: 1; }

    .card-badge {
      position: absolute; top: 10px; left: 10px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.5);
      border-radius: 6px;
      padding: 3px 8px;
      font-size: .6rem;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: .8px;
    }

    .card-logo {
      position: absolute; bottom: 10px; left: 10px;
      font-size: .85rem; font-weight: 900;
      color: #fff; letter-spacing: -1px;
    }

    .card-body-custom {
      padding: 20px 22px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .card-title-custom {
      font-size: .95rem;
      font-weight: 800;
      color: var(--icpna-blue);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .card-desc {
      font-size: .78rem;
      color: #555;
      line-height: 1.5;
      flex: 1;
    }

    .btn-download {
      display: inline-block;
      margin-top: 16px;
      background: var(--icpna-red);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: none;
      border-radius: 25px;
      padding: 8px 22px;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, transform .15s;
      align-self: flex-start;
    }

    .btn-download:hover {
      background: #c0121e;
      color: #fff;
      transform: scale(1.04);
    }

    /* Spec cards: dark variant */
    .spec-card {
      /* background: rgba(255,255,255,.08); */
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 30px rgba(0,0,0,.25);
      transition: transform .25s, background .25s;
      height: 100%;
      display: flex;
      flex-direction: column;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
    }

    .spec-card:hover {
      transform: translateY(-6px);
      background: rgba(255,255,255,.14);
    }

    .spec-card .card-title-custom { color: #fff; }
    .spec-card .card-desc { color: rgba(255,255,255,.75); }

    /* ─── CTA BAR ─────────────────────────────────────── */
    .cta-bar {
      background: linear-gradient(90deg, var(--icpna-red) 0%, #c0121e 100%);
      padding: 26px 0;
      text-align: center;
    }

    .cta-bar a {
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      font-weight: 800;
      color: #fff;
      text-decoration: none;
      letter-spacing: .5px;
      transition: opacity .2s;
    }

    .cta-bar a:hover { opacity: .85; }

    /* ─── FOOTER ──────────────────────────────────────── */
    footer {
      background: var(--icpna-blue);
      color: rgba(255,255,255,.8);
      padding: 28px 0;
      font-size: .78rem;
    }

    .footer-logo {
      font-size: 1.6rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1.5px;
    }

    .logo-footer-b01{
        width: 85px;
        height: auto;
    }


    .footer-logo span { color: var(--icpna-red); }

    .footer-social a {
      color: rgba(255,255,255,.7);
      margin: 0 6px;
      font-size: 1rem;
      transition: color .2s;
    }

    .footer-social a:hover { color: #fff; }

    /* ─── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 767px) {
      .hero-student { display: none; }
      .hero-content { padding: 40px 0 30px; }
    }