.about-section .shape-layer {
    position: absolute;
    top: 20px;
    right: 15px;
    width: 242px;
    height: 214px;
    background-repeat: no-repeat;
}

.about-section {
    position: relative;
    padding: 225px 0px 80px 0px;
}

.main-header .menu-right-content .nav-btn.nav-toggler {
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 30px;
    color: #fff;
    cursor: pointer;
    top: 0;
    transition: all 500ms 
ease;
}


.paging-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 34px 0 36px 0;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  margin: 0;
  gap: 12px;
}
.page-item {
  list-style: none;
}
.page-link {
  display: block;
  min-width: 44px;          /* sama semua */
  padding: 8px 20px;
  border-radius: 6px;
  color: #C0A16B;
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  border: 2px solid #C0A16B;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-sizing: border-box;
}
.page-link:hover {
  background: #C0A16B;
  color: #27231F;
  border-color: #C0A16B;
}
.page-item.active .page-link {
  background: #C0A16B;
  color: #27231F;
  border: 2px solid #C0A16B;
  font-weight: 700;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 500px) {
  .page-link {
    padding: 6px 14px;
    font-size: 16px;
    min-width: 32px;
  }
  .paging-wrapper {
    margin: 16px 0 16px 0;
  }
}
