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;
}

/* === Multi-geo language switcher === */
.lang-switcher {
  position: relative;
  margin-right: 12px;
  z-index: 50;
  flex-shrink: 0;
  align-self: center;
}
.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid rgba(34, 34, 34, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  color: #222;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  line-height: 1;
}
.lang-switcher__btn:hover,
.lang-switcher.is-open .lang-switcher__btn {
  border-color: rgba(34, 34, 34, 0.45);
  background: #fff;
}
.lang-switcher__caret {
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.lang-switcher.is-open .lang-switcher__caret {
  transform: rotate(180deg);
}
.lang-switcher__list {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 168px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.12);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.lang-switcher.is-open .lang-switcher__list {
  display: block;
}
.lang-switcher__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 7px;
  color: #222;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.lang-switcher__link:hover,
.lang-switcher__link.is-active {
  background: rgba(15, 118, 110, 0.08);
  color: #0f766e;
}
.lang-switcher__name {
  font-weight: 500;
  font-size: 12px;
  opacity: 0.7;
}
@media screen and (max-width: 991px) {
  .lang-switcher {
    margin-right: 8px;
  }
}
