@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;600;700&display=swap');

:root {
  --ar-header-blue-1: #2b62f5;
  --ar-header-blue-2: #0039d7;
  --ar-header-text: #ffffff;
  --ar-header-text-soft: rgba(255,255,255,0.92);
  --ar-header-line: rgba(255,255,255,0.42);
  --ar-header-btn-border: rgba(255,255,255,0.88);
  --ar-header-btn-fill: #ffffff;
  --ar-header-btn-text: #0f4fe6;
  --ar-header-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.ar-help-header,
.ar-help-header * {
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}

.ar-help-header {
  position: relative;
  z-index: 999;
  width: 100%;
  background: linear-gradient(90deg, var(--ar-header-blue-1) 0%, var(--ar-header-blue-2) 100%);
  box-shadow: var(--ar-header-shadow);
}

.ar-help-header__container {
  width: 100%;
  max-width: 1440px;
  min-height: 100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ar-help-header__brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
}

.ar-help-header__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.ar-help-header__logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: 180px;
}

.ar-help-header__divider {
  width: 1px;
  height: 38px;
  background: var(--ar-header-line);
}

.ar-help-header__label {
  color: var(--ar-header-text);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.ar-help-header__nav--desktop {
   flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* FIX: left align */
  gap: 32px;
  margin-left: 40px; /* spacing from logo block */
}

.ar-help-header__nav a {
  color: var(--ar-header-text-soft);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ar-help-header__nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: #fff;
}

.ar-help-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 46px;
  padding: 0 24px;
  border-radius: 9px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ar-btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.ar-btn--outline {
  color: #fff;
  border: 2px solid var(--ar-header-btn-border);
  background: transparent;
}

.ar-btn--solid {
  color: var(--ar-header-btn-text);
  border: 2px solid #fff;
  background: var(--ar-header-btn-fill);
}

.ar-help-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ar-help-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.ar-help-header__mobile-menu {
  display: none;
  width: 100%;
  padding: 0 20px 20px;
  background: linear-gradient(90deg, var(--ar-header-blue-1) 0%, var(--ar-header-blue-2) 100%);
}

.ar-help-header__nav--mobile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0 0;
}

.ar-help-header__nav--mobile a {
  width: 100%;
}

.ar-help-header__nav--mobile .ar-btn {
  margin-top: 2px;
}

.ar-help-header.is-open .ar-help-header__mobile-menu {
  display: block;
}

.ar-help-header.is-open .ar-help-header__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ar-help-header.is-open .ar-help-header__toggle span:nth-child(2) {
  opacity: 0;
}

.ar-help-header.is-open .ar-help-header__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1199px) {
  .ar-help-header__container {
    padding: 0 28px;
  }

  .ar-help-header__nav--desktop {
    gap: 26px;
  }

  .ar-help-header__nav a,
  .ar-btn,
  .ar-help-header__label {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .ar-help-header__container {
    min-height: 84px;
    padding: 0 20px;
    gap: 14px;
  }

  .ar-help-header__logo {
    height: 30px;
    max-width: 155px;
  }

  .ar-help-header__divider {
    height: 30px;
  }

  .ar-help-header__label {
    font-size: 16px;
  }

  .ar-help-header__nav--desktop,
  .ar-help-header__actions--desktop {
    display: none;
  }

  .ar-help-header__toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .ar-help-header__container {
    min-height: 78px;
    padding: 0 16px;
  }

  .ar-help-header__brand {
    gap: 12px;
  }

  .ar-help-header__logo {
    height: 26px;
    max-width: 138px;
  }

  .ar-help-header__divider {
    height: 24px;
  }

  .ar-help-header__label {
    font-size: 15px;
  }

  .ar-btn {
    min-width: 100%;
    height: 44px;
  }
}











@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;600&display=swap');

.ar-help-footer,
.ar-help-footer * {
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}

.ar-help-footer {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 56px 0 40px;
}

.ar-help-footer__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 38px;
}

.ar-help-footer__top,
.ar-help-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ar-help-footer__top {
  padding-bottom: 34px;
}

.ar-help-footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin-bottom: 34px;
}

.ar-help-footer__back a,
.ar-help-footer__links a,
.ar-help-footer__copyright {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.ar-help-footer__back a:hover,
.ar-help-footer__links a:hover {
  opacity: 0.85;
}

.ar-help-footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: nowrap;
}

.ar-help-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ar-help-footer__social img {
  width: 22px;
  height: 22px;
  display: block;
}

.ar-help-footer__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.ar-help-footer__bottom {
  align-items: flex-start;
}

.ar-help-footer__links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 760px;
}

.ar-help-footer__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8px;
}

.ar-help-footer__dot img {
  width: 4px;
  height: 4px;
  display: block;
}

.ar-help-footer__copyright {
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* tablet */
@media (max-width: 991px) {
  .ar-help-footer {
    padding: 44px 0 34px;
  }

  .ar-help-footer__container {
    padding: 0 24px;
  }

  .ar-help-footer__top {
    padding-bottom: 26px;
  }

  .ar-help-footer__divider {
    margin-bottom: 26px;
  }

  .ar-help-footer__top,
  .ar-help-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .ar-help-footer__social {
    justify-content: flex-start;
    gap: 16px;
  }

  .ar-help-footer__links {
    max-width: 100%;
  }

  .ar-help-footer__copyright {
    margin-left: 0;
    text-align: left;
    white-space: normal;
    margin-top: 14px;
  }
}

/* mobile */
@media (max-width: 640px) {
  .ar-help-footer {
    padding: 36px 0 28px;
  }

  .ar-help-footer__container {
    padding: 0 20px;
  }

  .ar-help-footer__top {
    gap: 18px;
    padding-bottom: 22px;
  }

  .ar-help-footer__divider {
    margin-bottom: 22px;
  }

  .ar-help-footer__back a,
  .ar-help-footer__links a,
  .ar-help-footer__copyright {
    font-size: 14px;
    line-height: 1.6;
  }

  .ar-help-footer__social {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
  }

  .ar-help-footer__social img {
    width: 20px;
    height: 20px;
  }

  .ar-help-footer__x {
    width: 20px;
    height: 20px;
    font-size: 22px;
  }

  .ar-help-footer__links {
    width: 100%;
    gap: 8px 12px;
  }

  .ar-help-footer__dot {
    width: auto;
  }

  .ar-help-footer__copyright {
    width: 100%;
    margin-top: 12px;
  }
}
