#policy-page {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 15px;
}

.policy-breadcrumb {
  padding: 15px 25px;
  border: 1px dashed #d7d7d7;
  border-radius: 12px;
  margin-bottom: 25px;
  background: #fafafa;
  font-size: 14px;
}

.policy-breadcrumb a {
  color: #666;
  text-decoration: none;
}

.policy-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

/* Sidebar */

.policy-sidebar {
  /* position: sticky;
  top: calc(var(--header-height, 80px) + 20px);
  align-self: start; */
  border: 1px dashed #d7d7d7;
  border-radius: 12px;
  padding: 25px;
  background: #fafafa;
  z-index: 10;
}

.policy-sidebar-placeholder {
  width: 100%;
  position: relative;
}

.policy-sidebar.fixed {
  position: fixed;
  top: 100px;
  /* chỉnh theo chiều cao header */
  z-index: 100;
}

.policy-sidebar.stop {
  position: absolute;
  bottom: 0;
  top: auto;
}

.policy-sidebar h3 {
  margin: 0 0 25px;
  font-size: 20px;
}

.policy-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-sidebar li {
  margin-bottom: 8px;
}

.policy-sidebar li a {
  display: block;
  padding: 12px 15px;
  border-radius: 8px;
  color: #555;
  text-decoration: none;
  transition: all .3s ease;
}

.policy-sidebar li a:hover {
  background: #f0f0f0;
  color: #000;
}

.policy-sidebar li.active a {
  background: #F6C23A;
  color: #fff;
  font-weight: 600;
}

/* Content */

.policy-content {
  border: 1px dashed #d7d7d7;
  border-radius: 12px;
  background: #fff;
}

.policy-title {
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}

.policy-title h1 {
  margin: 0;
  font-size: 28px;
}

.policy-body {
  padding: 35px;
  line-height: 1.8;
  color: #444;
}

.policy-body h2,
.policy-body h3 {
  margin-top: 35px;
}

.policy-body img {
  max-width: 100%;
  height: auto;
}

/* CTA */

.policy-cta {
  border: 1px dashed #d7d7d7;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  background: #fafafa;
}

.policy-cta h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.policy-cta p {
  margin-bottom: 25px;
  color: #666;
}

.policy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  background: #F6C23A;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.policy-btn:hover {
  background: #0b5ed7;
  color: #fff;
}

/* Mobile */

@media(max-width:991px) {

  .policy-wrapper {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    order: 2;
  }

  .policy-content {
    order: 1;
  }
}