.kayan-footer{
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 18px 28px;
  text-align: center;
  background: #fff;
  color: #222;
  font-family: system-ui, -apple-system, "Segoe UI", Tahoma, Arial, sans-serif;
}

.kf-top{ display:flex; justify-content:center; margin-bottom: 14px; }

.kf-logo{
  height: 46px;
  width: auto;
  object-fit: contain;
  opacity: .95;
}

.kf-logo--small{ height: 40px; margin-top: 22px; }

.kf-intro{
  margin: 0 auto 28px;
  max-width: 760px;
  line-height: 2.0;
  font-size: 18px;
  color: #2a2a2a;
}

.kf-title{
  margin: 26px 0 14px;
  font-size: 28px;
  font-weight: 800;
  color: #2a2a2a;
}

.kf-links{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  justify-items: center;
  margin-top: 8px;
}

.kf-col{
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  width: min(320px, 100%);
}

.kf-col li{ margin: 12px 0; }

.kf-col a{
  text-decoration: none;
  color: #2a2a2a;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}
.kf-col a:hover{ text-decoration: underline; }

.kf-support{
  display:flex;
  justify-content:center;
  gap: 22px;
  margin-top: 14px;
}

.kf-icon{
  width: 74px;
  height: 74px;
  border-radius: 14px;
  background: #f3f3f3;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .15s ease, background .15s ease;
}
.kf-icon:hover{ transform: translateY(-2px); background:#ededed; }

.kf-icon svg{
  width: 36px;
  height: 36px;
  fill: #111;
}

.kf-bottom{
  margin-top: 28px;
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
}

.kf-ids{
  display:flex;
  gap: 40px;
  align-items:flex-end;
}

.kf-id{ text-align: right; }

.kf-id-title{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.kf-id-num{
  font-size: 22px;
  letter-spacing: .5px;
}

.kf-flag{
  width: 88px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px){
  .kf-intro{ font-size: 16px; }
  .kf-title{ font-size: 24px; }

  .kf-links{
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: stretch;
  }

  .kf-col{ text-align: center; width: 100%; }

  .kf-col a{ font-size: 18px; }

  .kf-bottom{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .kf-ids{
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .kf-id{ text-align:center; }
}