.driver-help-page {
  font-family: "Manrope", sans-serif;
}

.trt-shell,
.trt-footer-shell {
  width: min(calc(100% - 30px), 1400px);
  margin-inline: auto;
}

.trt-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 15px 0;
  background: rgba(245, 248, 252, 0.88);
  backdrop-filter: blur(12px);
}

.trt-header-box {
  min-height: 62px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0 20px rgba(88, 93, 105, 0.1), 0 12px 20px rgba(88, 93, 105, 0.05);
}

.trt-logo {
  width: 120px;
  flex: 0 0 auto;
}

.trt-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.trt-main-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.trt-main-menu a {
  color: #061627;
  font-size: 16px;
  font-weight: 500;
}

.trt-main-menu a:hover {
  color: #2993ff;
}

.trt-login {
  min-height: 36px;
  padding: 3px 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2993ff;
  border: 1px solid #2993ff;
  border-radius: 24px;
  font-size: 17px;
  font-weight: 500;
}

.trt-burger {
  display: none;
  padding: 8px;
  color: #354052;
  background: transparent;
  border: 0;
}

.driver-help-main {
  min-height: 60vh;
}

.search-results-section {
  scroll-margin-top: 100px;
}

.hero-app-link {
  min-height: 48px;
  margin-top: 24px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: #09244b;
  border-radius: 12px;
  font-weight: 700;
}

.trt-footer {
  padding: 64px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: #09244b;
}

.trt-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr;
  gap: 70px;
}

.trt-footer-brand img {
  width: 188px;
  height: auto;
}

.trt-footer-brand p {
  margin: 20px 0;
}

.trt-footer h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 17px;
}

.trt-footer-links,
.trt-footer-contacts {
  display: grid;
  gap: 12px;
}

.trt-footer a:hover {
  color: #fff;
}

.trt-footer-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trt-footer-apps a {
  min-height: 38px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9px;
  font-size: 13px;
}

.trt-footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
}

.trt-footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.rich-content {
  font-size: 17px;
}

.rich-content h2,
.rich-content h3 {
  margin: 1.6em 0 0.55em;
  line-height: 1.25;
}

.rich-content p,
.rich-content ul,
.rich-content ol {
  margin: 0 0 1em;
}

.rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.rich-content table {
  width: 100%;
  border-collapse: collapse;
}

.rich-content th,
.rich-content td {
  padding: 10px;
  border: 1px solid #dfe5ec;
}

.info-block {
  margin: 24px 0;
  padding: 20px 22px;
  background: #eef7ff;
  border-left: 5px solid #2993ff;
  border-radius: 14px;
}

.info-block--important { background: #edf3ff; border-color: #326bd6; }
.info-block--warning { background: #fff8e8; border-color: #f5a623; }
.info-block--danger { background: #fff0f0; border-color: #ef4444; }
.info-block--success { background: #edfff4; border-color: #22c55e; }
.info-block h3 { margin-top: 0; }

.instruction-step {
  margin: 22px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #2993ff;
  border-radius: 50%;
  font-weight: 800;
}

.article-cover {
  width: 100%;
  max-height: 480px;
  margin-top: 24px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 840px) {
  .trt-shell {
    width: 100%;
  }
  .trt-header {
    padding: 0;
  }
  .trt-header-box {
    min-height: 58px;
    padding: 8px 12px;
    gap: 12px;
    border-radius: 0;
  }
  .trt-burger {
    display: grid;
  }
  .trt-logo {
    margin-right: auto;
  }
  .trt-login {
    min-height: 36px;
    padding: 2px 20px;
    font-size: 14px;
  }
  .trt-main-menu {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(20, 40, 70, 0.15);
  }
  .trt-main-menu.is-open {
    display: flex;
  }
  .trt-main-menu a {
    padding: 10px;
    text-align: center;
  }
  .trt-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .trt-footer-bottom {
    flex-direction: column;
  }
}
