.gap-y2 {
  gap: 2em 0;
}

/* Legal Page */
.legal_page {
  position: relative;
}

.main-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid #dedede;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 32px;
}

.policy-nav {
  position: sticky;
  top: 100px;
  padding-top: 60px;
}

.nav-link-custom {
  display: block;
  font-size: 14px;
  font-weight: 27282c;
  color: #27282c;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nav-link-custom:hover {
  background: #fef5e7;
  color: #f36727;
  transform: translateX(5px);
}

.legal_items {
  padding: 32px 0;
  border-top: 1px solid #dedede;
}

.legal_items h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.legal_items h2 svg {
  margin-right: 15px;
  color: #f36727;
}

.feature-list {
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  padding: 12px 15px;
  background: white;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  border-left: 4px solid #f36727;
}

/* Contact Box */
.contact-card {
  background: #1a252f;
  color: white;
  padding: 2.5rem;
  border-radius: 24px;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: #f36727;
  border-radius: 50%;
  opacity: 0.2;
}

.contact-card h4 {
  color: #fff;
}

@media (max-width: 991px) {
  .policy-nav {
    display: none;
  }

  .main-card {
    padding: 2rem 1.5rem;
  }
}