input[name="phone"] {
  padding-left: 90px !important;
}

.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup_title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.popup-content {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.breadcrumbs {
  padding: 1rem 0 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.35rem 0.5rem;
  font-size: 14px;
  padding-left: 20px;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.5rem;
  opacity: 0.6;
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs [aria-current="page"] {
  opacity: 0.8;
}

.legal-section {
  text-align: left;
}

.legal-section h2,
.legal-section h3 {
  margin-top: 30px;
  font-size: 24px;
}

.legal-section h4 {
  font-size: 18px;
}

.legal-section table {
  width: 100%;
}

.legal-section table,
.legal-section th,
.legal-section td {
  border: 1px solid;
  border-collapse: collapse;
}

.legal-section th,
.legal-section td {
  padding: 10px;
}

.legal-section table td {
  vertical-align: top;
}

.nested-list {
  counter-reset: item;
}

.nested-list li {
  display: block;
}

.nested-list li:before {
  content: counters(item, '.') '. ';
  counter-increment: item;
}
