:root{
    --navy:#003d6b;          /* OECD primary */
    --navy-deep:#00233f;     /* darker band */
    --teal:#00a0af;          /* accent rule */
    --teal-dark:#007e8c;
    --ink:#1f2933;
    --muted:#5a6b78;
    --line:#dde4ea;
    --bg:#f4f7f9;
    --card:#ffffff;
    --maxw:1080px;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Libre Franklin',-apple-system,BlinkMacSystemFont,sans-serif;
    color:var(--ink);
    background:var(--bg);
    font-size:17px;
    line-height:1.62;
    -webkit-font-smoothing:antialiased;
  }
  .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px;}
  a{color:var(--teal-dark);}

  /* ---- Top utility bar ---- */
  .topbar{
    background:var(--navy-deep);
    color:#cfe0ec;
    font-size:13px;
    letter-spacing:.02em;
  }
  .topbar .wrap{
    display:flex;justify-content:space-between;align-items:center;
    padding-top:9px;padding-bottom:9px;flex-wrap:wrap;gap:6px;
  }
  .topbar .status{
    text-transform:uppercase;letter-spacing:.12em;font-weight:600;font-size:11px;
    color:#8fb4cf;
  }

  /* ---- Brand header ---- */
  .brandbar{background:#fff;border-bottom:1px solid var(--line);}
  .brandbar .wrap{
    display:flex;align-items:center;justify-content:space-between;
    padding-top:20px;padding-bottom:20px;gap:20px;flex-wrap:wrap;
  }
  .brand{display:flex;align-items:center;gap:16px;}
  .logo{display:flex;align-items:center;gap:11px;font-weight:800;letter-spacing:-.01em;}
  .logo .mark{
    width:30px;height:30px;border-radius:50%;
    background:radial-gradient(circle at 35% 30%, #1f6fb0 0%, var(--navy) 70%);
    position:relative;flex:none;
  }
  .logo .mark::after{
    content:"";position:absolute;inset:6px;border-radius:50%;
    border:2px solid rgba(255,255,255,.85);border-right-color:transparent;
    transform:rotate(35deg);
  }
  .logo .word{font-size:22px;color:var(--navy);}
  .logo-img{display:block;width:auto;}
  .logo-img.oecd{height:34px;}
  .logo-img.ofa-img{height:38px;}
  .divider-v{width:1px;height:38px;background:var(--line);}
  .ofa{display:flex;align-items:center;gap:9px;color:var(--navy);}
  .ofa .ico{
    width:26px;height:26px;flex:none;border-radius:6px;
    background:linear-gradient(135deg,#1f8fd6,#0a6fae);
    position:relative;
  }
  .ofa .ico::before{
    content:"";position:absolute;left:6px;right:6px;top:9px;height:3px;border-radius:3px;
    background:#fff;box-shadow:0 5px 0 rgba(255,255,255,.7);
  }
  .ofa .txt{font-size:13px;font-weight:600;line-height:1.2;}
  .ofa .txt span{display:block;font-weight:400;color:var(--muted);}

  /* ---- Hero ---- */
  .hero{
    background:linear-gradient(160deg,var(--navy) 0%, var(--navy-deep) 100%);
    color:#fff;position:relative;overflow:hidden;
    border-bottom:5px solid var(--teal);
  }
  .hero::before{
    content:"";position:absolute;right:-120px;top:-80px;width:420px;height:420px;
    border-radius:50%;border:60px solid rgba(255,255,255,.04);
  }
  .hero .wrap{padding-top:64px;padding-bottom:60px;position:relative;}
  .eyebrow{
    display:inline-block;text-transform:uppercase;letter-spacing:.16em;
    font-size:12px;font-weight:700;color:var(--teal);
    border:1px solid rgba(0,160,175,.5);border-radius:40px;
    padding:6px 16px;margin-bottom:22px;
  }
  .hero h1{
    font-size:clamp(30px,4.6vw,46px);line-height:1.12;font-weight:800;
    letter-spacing:-.015em;margin:0 0 18px;max-width:18ch;
  }
  .hero p.lede{
    font-size:clamp(17px,2vw,20px);color:#d4e3ef;max-width:60ch;margin:0 0 30px;
    font-weight:300;
  }
  .hero .cta-row{display:flex;gap:14px;flex-wrap:wrap;}
  .hero p.lede a{color:#bfe9ee;text-decoration:underline;text-underline-offset:2px;}
  .hero p.lede a:hover{color:#fff;}

  .btn{
    display:inline-flex;align-items:center;gap:9px;
    padding:14px 24px;border-radius:6px;font-weight:600;font-size:16px;
    text-decoration:none;transition:transform .15s ease, box-shadow .15s ease;
    border:1px solid transparent;
  }
  .btn-primary{background:var(--teal);color:#fff;}
  .btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 22px rgba(0,160,175,.4);}
  .btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.4);}
  .btn-ghost:hover{background:rgba(255,255,255,.08);transform:translateY(-2px);}
  .btn .arr{font-size:18px;line-height:1;}

  /* ---- Section scaffold ---- */
  section{padding:62px 0;}
  section.alt{background:#fff;}
  .kicker{
    text-transform:uppercase;letter-spacing:.14em;font-size:12px;font-weight:700;
    color:var(--teal-dark);margin:0 0 12px;
  }
  h2{
    font-size:clamp(24px,3vw,32px);font-weight:800;letter-spacing:-.01em;
    color:var(--navy);margin:0 0 18px;line-height:1.2;
  }
  h2::after{
    content:"";display:block;width:54px;height:4px;background:var(--teal);
    border-radius:4px;margin-top:14px;
  }
  .lead-col{max-width:72ch;}
  p{margin:0 0 16px;}
  .muted{color:var(--muted);}

  /* ---- Three core features ---- */
  .features{
    display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:30px;
  }
  .feature{
    background:var(--bg);border:1px solid var(--line);border-radius:10px;
    padding:24px 22px;position:relative;
  }
  section.alt .feature{background:var(--bg);}
  .feature .num{
    font-size:13px;font-weight:700;color:var(--teal-dark);letter-spacing:.08em;
  }
  .feature h3{font-size:18px;margin:8px 0 6px;color:var(--navy);font-weight:700;}
  .feature p{font-size:15px;color:var(--muted);margin:0;}
  /* three-feature process flow */
  .feature-flow{display:flex;align-items:stretch;gap:8px;margin-top:30px;}
  .ff-step{flex:1;background:var(--bg);border:1px solid var(--line);border-radius:12px;
    padding:26px 22px 24px;position:relative;text-align:left;}
  section.alt .ff-step{background:#fff;}
  .ff-icon{width:52px;height:52px;border-radius:12px;background:var(--navy);color:#fff;
    display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
  .ff-icon svg{width:28px;height:28px;}
  .ff-step-no{position:absolute;top:20px;right:22px;font-size:13px;font-weight:800;
    letter-spacing:.06em;color:var(--teal-dark);opacity:.65;}
  .ff-step h3{font-size:17px;margin:0 0 6px;color:var(--navy);font-weight:700;line-height:1.25;}
  .ff-step p{font-size:14px;color:var(--muted);margin:0;line-height:1.5;}
  .ff-arrow{display:flex;align-items:center;color:var(--teal);flex:none;width:40px;}
  .ff-arrow svg{width:34px;height:22px;}
  @media (max-width:760px){
    .feature-flow{flex-direction:column;}
    .ff-arrow{width:100%;justify-content:center;transform:rotate(90deg);height:30px;margin:2px 0;}
  }

  /* ---- Two products ---- */
  .products{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:30px;}
  .product{
    border-radius:12px;padding:30px 28px;color:#fff;position:relative;overflow:hidden;
  }
  .product.brief{background:linear-gradient(150deg,#1166a8,#0a4d80);}
  .product.playbook{background:linear-gradient(150deg,var(--navy),var(--navy-deep));}
  .product .tag{font-size:12px;text-transform:uppercase;letter-spacing:.12em;opacity:.8;font-weight:600;}
  .product h3{font-size:22px;margin:8px 0 4px;font-weight:800;}
  .product .pages{font-size:13px;opacity:.85;margin-bottom:14px;}
  .product p{font-size:15px;color:rgba(255,255,255,.92);margin:0;}

  /* ---- Process timeline (numbered progress stepper) ---- */
  .timeline{margin-top:36px;position:relative;display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
  /* connecting rail between node centres (12.5% .. 87.5%) */
  .timeline::before{
    content:"";position:absolute;top:21px;left:12.5%;right:12.5%;height:3px;
    background:var(--line);border-radius:2px;z-index:0;
  }
  /* progress fill up to the current node (node 2 centre at 37.5%) */
  .timeline::after{
    content:"";position:absolute;top:21px;left:12.5%;width:25%;height:3px;
    background:var(--teal);border-radius:2px;z-index:0;
  }
  .tl{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;text-align:center;}
  .tl .node{
    width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;
    font-weight:700;font-size:16px;background:#fff;border:2px solid var(--line);color:var(--muted);
    box-shadow:0 0 0 5px var(--bg);
  }
  .tl.done .node{background:var(--teal);border-color:var(--teal);color:#fff;}
  .tl.current .node{background:var(--navy);border-color:var(--navy);color:#fff;
    box-shadow:0 0 0 5px var(--bg),0 0 0 8px rgba(0,160,175,.28);}
  .tl .card{
    margin-top:14px;width:100%;background:var(--card);border:1px solid var(--line);
    border-radius:12px;padding:16px 16px 18px;
  }
  .tl.current .card{border-color:var(--teal);box-shadow:0 8px 22px rgba(0,61,107,.08);}
  .tl .tag{
    display:inline-block;margin-bottom:8px;font-size:10.5px;font-weight:700;
    text-transform:uppercase;letter-spacing:.07em;color:var(--teal-dark);
    background:rgba(0,160,175,.12);padding:3px 9px;border-radius:20px;
  }
  .tl .when{font-size:11.5px;text-transform:uppercase;letter-spacing:.08em;color:var(--teal-dark);font-weight:700;margin-bottom:5px;}
  .tl .phase{font-weight:700;color:var(--navy);font-size:16px;margin-bottom:6px;}
  .tl .desc{font-size:13.5px;color:var(--muted);line-height:1.5;}

  /* ---- Engagement pathways list ---- */
  .pathways{margin-top:26px;display:grid;grid-template-columns:1fr 1fr;gap:12px 28px;}
  .pathways li{
    list-style:none;padding:14px 0 14px 26px;position:relative;
    border-top:1px solid var(--line);font-size:15px;
  }
  .pathways li::before{
    content:"";position:absolute;left:0;top:20px;width:9px;height:9px;
    background:var(--teal);border-radius:2px;transform:rotate(45deg);
  }
  .pathways{padding-left:0;}
  .pathways li strong{color:var(--navy);}

  /* ---- Consultation channels ---- */
  .channels{margin-top:24px;display:grid;grid-template-columns:1fr 1fr;gap:14px;}
  .channel{background:var(--bg);border:1px solid var(--line);border-radius:12px;padding:16px 18px;}
  .channel .who{
    display:inline-block;margin-bottom:9px;font-size:10.5px;font-weight:700;
    text-transform:uppercase;letter-spacing:.06em;color:var(--muted);
    background:#fff;border:1px solid var(--line);padding:3px 9px;border-radius:20px;
  }
  .channel h3{font-size:15px;color:var(--navy);margin:0 0 5px;font-weight:700;}
  .channel p{font-size:13.5px;color:var(--muted);margin:0;line-height:1.52;}
  .channel p a{font-weight:600;}
  .channel.open{
    grid-column:1 / -1;background:#fff;border:1px solid var(--teal);
    box-shadow:0 8px 22px rgba(0,61,107,.07);
    display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;
  }
  .channel.open .ch-main{flex:1 1 380px;}
  .channel.open .who{color:#fff;background:var(--teal);border-color:var(--teal);}
  .channel.open h3{font-size:17px;}
  .channel.open .btn{flex:none;}

  /* ---- Get involved / action cards ---- */
  .actions{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:30px;}
  .action{
    background:var(--card);border:1px solid var(--line);border-radius:12px;
    padding:30px 28px;display:flex;flex-direction:column;
    box-shadow:0 1px 0 rgba(0,0,0,.02);
  }
  .action .ic{
    width:46px;height:46px;border-radius:10px;background:rgba(0,160,175,.12);
    display:flex;align-items:center;justify-content:center;color:var(--teal-dark);
    font-size:22px;margin-bottom:16px;
  }
  .action h3{font-size:20px;color:var(--navy);margin:0 0 8px;font-weight:700;}
  .action p{font-size:15px;color:var(--muted);flex:1;}
  .action .btn{margin-top:8px;align-self:flex-start;}
  .action .btn-solid{background:var(--navy);color:#fff;}
  .action .btn-solid:hover{background:var(--navy-deep);transform:translateY(-2px);}
  .placeholder-note{
    font-size:12px;color:#b06a00;background:#fff6e6;border:1px dashed #e0b15a;
    border-radius:6px;padding:6px 10px;margin-top:12px;display:inline-block;
  }
  .deadline{
    margin-top:30px;background:var(--navy);color:#fff;border-radius:10px;
    padding:20px 26px;display:flex;align-items:center;gap:16px;flex-wrap:wrap;
  }
  .deadline .lbl{text-transform:uppercase;letter-spacing:.12em;font-size:12px;font-weight:700;color:var(--teal);}
  .deadline .val{font-size:18px;font-weight:600;}

  /* ---- Contacts ---- */
  .contacts{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:30px;}
  .contact{
    background:var(--card);border:1px solid var(--line);border-radius:12px;padding:28px;
    border-top:4px solid var(--teal);
  }
  .contact h3{font-size:18px;color:var(--navy);margin:0 0 4px;font-weight:700;}
  .contact .org{font-size:13px;color:var(--muted);margin:0 0 18px;}
  .contact .person{padding:12px 0;border-top:1px solid var(--line);}
  .contact .person:first-of-type{border-top:none;}
  .contact .person .nm{font-weight:600;color:var(--ink);}
  .contact .person .em{font-size:14px;}
  .contact .person .em a{word-break:break-all;}

  /* ---- Footer ---- */
  footer{background:var(--navy-deep);color:#aebfcc;font-size:13px;padding:40px 0;}
  footer .wrap{display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap;}
  footer .disclaimer{max-width:62ch;line-height:1.6;}
  footer strong{color:#dce7ef;}

  /* advisory council member / logo wall */
  .member-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-top:28px;}
  .member{display:flex;flex-direction:column;align-items:center;justify-content:center;
    text-align:center;gap:8px;background:#fff;border:1px solid var(--line);border-radius:10px;
    padding:16px 14px;min-height:96px;}
  .member.country{gap:9px;}
  .mc-flag{width:46px;height:34px;border-radius:4px;overflow:hidden;
    box-shadow:0 0 0 1px rgba(0,0,0,.08);display:block;}
  .mc-flag svg{width:100%;height:100%;object-fit:cover;display:block;}
  .mc-cap{font-size:13px;font-weight:600;color:var(--ink);line-height:1.25;}
  .mc-sub{display:block;font-size:11.5px;font-weight:500;color:var(--muted);}
  .mc-logo{max-width:88%;max-height:48px;width:auto;height:auto;object-fit:contain;}
  .mc-word{font-size:14px;font-weight:700;color:var(--navy);line-height:1.3;}
  @media (max-width:980px){.member-grid{grid-template-columns:repeat(3,1fr);}}
  @media (max-width:620px){.member-grid{grid-template-columns:repeat(2,1fr);}}
  @media (max-width:880px){
    .features,.products,.pathways,.channels,.actions,.contacts{grid-template-columns:1fr;}
    /* timeline becomes a vertical stepper */
    .timeline{grid-template-columns:1fr;gap:0;padding-left:2px;}
    .timeline::before{top:0;bottom:0;left:21px;right:auto;width:3px;height:auto;}
    .timeline::after{display:none;}
    .tl{flex-direction:row;align-items:flex-start;text-align:left;gap:16px;padding-bottom:18px;}
    .tl:last-child{padding-bottom:0;}
    .tl .node{flex:none;}
    .tl .card{margin-top:0;}
  }


/* Editable Outcome Accelerator-style footer */
.oa-site-footer{
  background:#f7f8fa;
  border-top:1px solid #d9dde2;
  color:#001b44;
  padding:72px 24px 76px;
  font-family:"Libre Franklin", Arial, sans-serif;
}

.oa-footer-inner{
  max-width:980px;
  margin:0 auto;
  display:grid;
  grid-template-columns:260px 1fr;
  gap:76px;
  align-items:start;
}

.oa-footer-left{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.oa-accelerator-logo{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:22px;
}

.oa-accelerator-mark{
  width:44px;
  height:44px;
  border-radius:50%;
  display:inline-block;
  position:relative;
  background:
    radial-gradient(circle at 67% 36%, transparent 0 3px, #087eb8 3.5px 6px, transparent 6.5px),
    repeating-linear-gradient(145deg, transparent 0 7px, rgba(255,255,255,.8) 7px 10px),
    #0785c8;
  box-shadow:inset 0 0 0 2px rgba(255,255,255,.55);
  flex:0 0 auto;
}

.oa-accelerator-text{
  font-size:22px;
  line-height:.9;
  font-weight:600;
  letter-spacing:-.5px;
  color:#061d3d;
}

.oa-levoca-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:24px;
}

.oa-levoca-mark{
  width:34px;
  height:34px;
  display:grid;
  grid-template-columns:repeat(3,9px);
  grid-template-rows:repeat(3,9px);
  gap:3px;
  transform:rotate(45deg);
  margin-left:6px;
  flex:0 0 auto;
}

.oa-levoca-mark i{
  display:block;
  border-radius:2px;
  background:#2b79c2;
}

.oa-levoca-mark i:nth-child(2),
.oa-levoca-mark i:nth-child(4),
.oa-levoca-mark i:nth-child(6),
.oa-levoca-mark i:nth-child(8){
  background:#7167c9;
}

.oa-levoca-text{
  font-size:32px;
  line-height:1;
  font-weight:600;
  letter-spacing:-.5px;
  color:#2f3047;
}

.oa-social-links{
  display:flex;
  align-items:center;
  gap:20px;
  margin:3px 0 25px 10px;
}

.oa-social-links a{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#003b8f;
  text-decoration:none;
}

.oa-social-links svg{
  width:22px;
  height:22px;
  fill:currentColor;
  display:block;
}

.oa-footer-copyright{
  margin:0;
  font-size:13px;
  line-height:1.4;
  color:#000;
}

.oa-footer-right h2{
  margin:0 0 42px;
  font-size:17px;
  line-height:1.2;
  color:#000;
  font-weight:700;
}

.oa-footer-link-list{
  display:flex;
  flex-wrap:wrap;
  gap:18px 30px;
  align-items:center;
}

.oa-footer-link-list a{
  color:#001b44;
  text-decoration:none;
  font-size:14px;
  line-height:1.25;
  font-weight:400;
  white-space:nowrap;
}

.oa-footer-link-list a:hover{
  color:#0077b6;
  text-decoration:underline;
}

@media (max-width:900px){
  .oa-site-footer{
    padding:52px 22px;
  }

  .oa-footer-inner{
    grid-template-columns:1fr;
    gap:42px;
  }

  .oa-footer-right h2{
    margin-bottom:24px;
  }

  .oa-footer-link-list{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
  }
}


.oa-real-footer-logo{
  display:block;
  max-width:230px;
  height:auto;
  margin-bottom:20px;
}
.oa-real-footer-logo.levoca{
  max-width:180px;
}


/* Temporary blank footer logo spaces */
.oa-logo-placeholder{
  display:block;
  background:transparent;
}

.oa-placeholder-accelerator{
  width:230px;
  height:58px;
  margin-bottom:20px;
}

.oa-placeholder-levoca{
  width:180px;
  height:44px;
  margin-bottom:24px;
}

/* Ensure older generated footer logos do not appear */



/* Real footer logos inserted above social icons */
.oa-footer-logo{
  display:block;
  height:auto;
  object-fit:contain;
}

.oa-footer-logo-accelerator{
  width:210px;
  max-width:100%;
  margin-bottom:18px;
}

.oa-footer-logo-levoca{
  width:160px;
  max-width:100%;
  margin-bottom:24px;
}

/* Keep old placeholder boxes hidden after replacement */



/* Footer logos placed above social icons */
.oa-footer-logo-stack{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
  margin-bottom:22px;
}

.oa-footer-logo{
  display:block !important;
  height:auto !important;
  object-fit:contain;
}

.oa-footer-logo-accelerator{
  width:220px !important;
  max-width:220px !important;
}

.oa-footer-logo-levoca{
  width:170px !important;
  max-width:170px !important;
}

.oa-social-links{
  margin-top:0 !important;
}


/* Remove old generated footer logos */
.oa-accelerator-logo,
.oa-levoca-logo{
  display:none !important;
}


/* FINAL FOOTER FIX: constrain logos and restore light footer layout */
.oa-site-footer{
  background:#f7f8fa !important;
  border-top:1px solid #d9dde2 !important;
  color:#001b44 !important;
  padding:72px 24px 76px !important;
  overflow:hidden !important;
}

.oa-footer-inner{
  max-width:980px !important;
  margin:0 auto !important;
  display:grid !important;
  grid-template-columns:260px 1fr !important;
  gap:76px !important;
  align-items:start !important;
}

.oa-footer-left{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
}

.oa-footer-logo-stack{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  gap:18px !important;
  margin:0 0 22px 0 !important;
}

.oa-footer-logo,
.oa-footer-logo-stack img{
  display:block !important;
  height:auto !important;
  object-fit:contain !important;
}

.oa-footer-logo-accelerator{
  width:220px !important;
  max-width:220px !important;
  max-height:72px !important;
}

.oa-footer-logo-levoca{
  width:170px !important;
  max-width:170px !important;
  max-height:48px !important;
}

.oa-accelerator-logo,
.oa-levoca-logo{
  display:none !important;
}

.oa-social-links{
  display:flex !important;
  align-items:center !important;
  gap:20px !important;
  margin:3px 0 25px 10px !important;
}

.oa-social-links a{
  width:22px !important;
  height:22px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:#003b8f !important;
  text-decoration:none !important;
}

.oa-social-links svg{
  width:22px !important;
  height:22px !important;
  fill:currentColor !important;
  display:block !important;
}

.oa-footer-copyright{
  margin:0 !important;
  font-size:13px !important;
  line-height:1.4 !important;
  color:#000 !important;
}

.oa-footer-right h2{
  margin:0 0 42px !important;
  font-size:17px !important;
  line-height:1.2 !important;
  color:#000 !important;
  font-weight:700 !important;
}

.oa-footer-link-list{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:18px 30px !important;
  align-items:center !important;
}

.oa-footer-link-list a{
  color:#001b44 !important;
  text-decoration:none !important;
  font-size:14px !important;
  line-height:1.25 !important;
  font-weight:400 !important;
  white-space:nowrap !important;
}

.oa-footer-link-list a:hover{
  color:#0077b6 !important;
  text-decoration:underline !important;
}

@media (max-width:900px){
  .oa-site-footer{
    padding:52px 22px !important;
  }

  .oa-footer-inner{
    grid-template-columns:1fr !important;
    gap:42px !important;
  }

  .oa-footer-right h2{
    margin-bottom:24px !important;
  }

  .oa-footer-link-list{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:14px !important;
  }
}

