.servicemen-page {
  --sm-blue: #3b82f6;
  --sm-blue-light: #7dd3fc;
  --sm-text: #f8fafc;
  --sm-muted: #aebbd0;
  --sm-line: rgba(148, 163, 184, 0.2);
  --sm-panel: rgba(15, 27, 48, 0.74);
  --sm-panel-strong: rgba(13, 25, 46, 0.94);
  position: relative;
  padding: 18px 0 90px;
}

.servicemen-page::before {
  position: absolute;
  inset: 0 0 auto;
  height: 520px;
  background:
    radial-gradient(circle at 16% 14%, rgba(37, 99, 235, 0.2), transparent 38%),
    radial-gradient(circle at 86% 28%, rgba(14, 165, 233, 0.13), transparent 36%);
  content: "";
  pointer-events: none;
}

.servicemen-page > .container {
  position: relative;
  z-index: 1;
}

.servicemen-breadcrumbs {
  margin: 4px 0 18px;
  color: #8fa1ba;
  font-size: 13px;
}

.servicemen-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  list-style: none;
}

.servicemen-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.servicemen-breadcrumbs li:not(:last-child)::after {
  color: #55657b;
  content: "›";
}

.servicemen-breadcrumbs a {
  color: #9fb0c8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.servicemen-breadcrumbs a:hover {
  color: #fff;
}

.servicemen-subnav {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px;
  overflow-x: auto;
  border: 1px solid var(--sm-line);
  border-radius: 14px;
  background: rgba(10, 20, 37, 0.7);
  scrollbar-width: thin;
}

.servicemen-subnav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 9px;
  color: #aebbd0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.servicemen-subnav a:hover,
.servicemen-subnav a.is-current {
  background: rgba(59, 130, 246, 0.18);
  color: #fff;
}

.servicemen-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: 22px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(16, 35, 67, 0.97), rgba(9, 18, 34, 0.96)),
    var(--sm-panel-strong);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

.servicemen-hero::after {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22), transparent 65%);
  content: "";
  pointer-events: none;
}

.servicemen-hero__content,
.servicemen-hero__navigator {
  position: relative;
  z-index: 1;
}

.servicemen-kicker {
  display: inline-flex;
  margin-bottom: 11px;
  color: var(--sm-blue-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.servicemen-hero h1,
.servicemen-topic-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--sm-text);
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.servicemen-hero__content > p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #b7c6da;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}

.servicemen-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.servicemen-page .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 11px;
  text-decoration: none;
}

.servicemen-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  color: #e6edf7;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.servicemen-button-secondary:hover {
  border-color: rgba(125, 211, 252, 0.54);
  background: rgba(59, 130, 246, 0.12);
}

.servicemen-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #9faec4;
  font-size: 13px;
  list-style: none;
}

.servicemen-hero__trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.servicemen-hero__trust i {
  color: #60a5fa;
}

.servicemen-hero__navigator {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(5, 13, 27, 0.56);
  backdrop-filter: blur(12px);
}

.servicemen-hero__navigator > span {
  margin-bottom: 10px;
  color: #8393aa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.servicemen-hero__navigator a {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.13);
  color: #eaf1fb;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.servicemen-hero__navigator a:last-child {
  border-bottom: 0;
}

.servicemen-hero__navigator a:hover {
  padding-left: 4px;
  color: var(--sm-blue-light);
}

.servicemen-hero__navigator i {
  color: #60a5fa;
  text-align: center;
}

.servicemen-section {
  padding-top: clamp(54px, 7vw, 82px);
}

.servicemen-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.servicemen-section-heading h2,
.servicemen-service-card h2,
.servicemen-expert h2 {
  margin: 0;
  color: var(--sm-text);
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 3.2vw, 38px);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.servicemen-section-heading > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: var(--sm-muted);
  font-size: 14px;
  line-height: 1.6;
}

.servicemen-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.servicemen-card-grid--main {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.servicemen-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 15px;
  align-items: start;
  min-width: 0;
  padding: 21px;
  border: 1px solid var(--sm-line);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(22, 39, 68, 0.8), rgba(12, 23, 42, 0.82)),
    var(--sm-panel);
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.servicemen-card:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.servicemen-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 13px;
  background: rgba(37, 99, 235, 0.14);
  color: #7dd3fc;
  font-size: 19px;
}

.servicemen-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.servicemen-card__body strong {
  color: #f4f8ff;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 680;
  line-height: 1.35;
}

.servicemen-card__body > span {
  color: #9eacc0;
  font-size: 13px;
  line-height: 1.55;
}

.servicemen-card__arrow {
  margin-top: 4px;
  color: #5f7592;
  font-size: 20px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.servicemen-card:hover .servicemen-card__arrow {
  transform: translateX(3px);
  color: #7dd3fc;
}

.servicemen-card-grid--compact .servicemen-card,
.servicemen-card-grid--related .servicemen-card {
  padding: 18px;
}

.servicemen-card-grid--compact .servicemen-card__icon,
.servicemen-card-grid--related .servicemen-card__icon {
  width: 42px;
  height: 42px;
}

.servicemen-service-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 54px);
  margin-top: clamp(54px, 7vw, 82px);
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(96, 165, 250, 0.26);
  border-radius: 23px;
  background:
    linear-gradient(135deg, rgba(21, 42, 76, 0.9), rgba(10, 21, 39, 0.94)),
    var(--sm-panel-strong);
}

.servicemen-service-card__intro > p {
  margin: 16px 0 0;
  color: #aebdd0;
  font-size: 15px;
  line-height: 1.65;
}

.servicemen-trust-note {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 12px;
  background: rgba(2, 8, 23, 0.28);
  color: #93a5bd;
  font-size: 12px;
  line-height: 1.55;
}

.servicemen-trust-note i {
  margin-top: 2px;
  color: #60a5fa;
}

.servicemen-service-form {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(3, 11, 24, 0.36);
}

.servicemen-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.servicemen-form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.servicemen-form-field label {
  min-height: 34px;
  color: #c7d2e2;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.servicemen-form-field input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 10px;
  outline: none;
  background: rgba(4, 12, 26, 0.72);
  color: #fff;
  font-size: 14px;
  color-scheme: dark;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.servicemen-form-field input:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.13);
}

.servicemen-consent {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 9px;
  align-items: start;
  margin-top: 16px;
  color: #93a4bb;
  font-size: 11px;
  line-height: 1.5;
}

.servicemen-consent input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: #3b82f6;
}

.servicemen-consent a {
  color: #93c5fd;
}

.servicemen-consent--modal {
  margin: 0 0 16px;
}

.servicemen-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.servicemen-form-message {
  margin: 0;
  color: #b7c6d9;
  font-size: 12px;
  line-height: 1.45;
}

.servicemen-faq-list {
  display: grid;
  gap: 10px;
}

.servicemen-faq-item {
  border: 1px solid var(--sm-line);
  border-radius: 14px;
  background: rgba(15, 28, 49, 0.72);
  overflow: hidden;
}

.servicemen-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 21px;
  color: #edf4ff;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
  list-style: none;
}

.servicemen-faq-item summary::-webkit-details-marker {
  display: none;
}

.servicemen-faq-item summary i {
  color: #6f88aa;
  font-size: 13px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.servicemen-faq-item[open] summary i {
  transform: rotate(45deg);
  color: #7dd3fc;
}

.servicemen-faq-item__answer {
  padding: 0 21px 20px;
  color: #aebdd0;
  font-size: 14px;
  line-height: 1.72;
}

.servicemen-faq-item__answer p + p {
  margin-top: 12px;
}

.servicemen-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 10px;
  color: #7dd3fc;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.servicemen-expert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 24px;
  align-items: stretch;
  margin-top: clamp(54px, 7vw, 82px);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(21, 45, 82, 0.92), rgba(8, 20, 38, 0.94)),
    var(--sm-panel-strong);
  overflow: hidden;
}

.servicemen-expert__content {
  padding: clamp(26px, 5vw, 45px);
}

.servicemen-expert__content > p {
  max-width: 680px;
  margin: 15px 0 0;
  color: #aebdd0;
  font-size: 15px;
  line-height: 1.65;
}

.servicemen-expert__person {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 20px;
}

.servicemen-expert__person strong {
  color: #fff;
  font-size: 15px;
}

.servicemen-expert__person span,
.servicemen-expert__email {
  color: #91a3bb;
  font-size: 12px;
  line-height: 1.5;
}

.servicemen-expert__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.servicemen-expert__email {
  display: inline-block;
  margin-top: 13px;
  text-decoration: none;
}

.servicemen-expert__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border-left: 1px solid rgba(148, 163, 184, 0.13);
  background:
    radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 62%),
    rgba(2, 8, 23, 0.2);
}

.servicemen-expert__visual span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(125, 211, 252, 0.27);
  border-radius: 32px;
  background: rgba(59, 130, 246, 0.13);
  color: #7dd3fc;
  font-size: 42px;
  transform: rotate(-4deg);
}

.servicemen-disclaimer {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  margin-top: 24px;
  padding: 15px 17px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.42);
  color: #8395ad;
  font-size: 11px;
  line-height: 1.55;
}

.servicemen-disclaimer i {
  margin-top: 2px;
  color: #60a5fa;
}

.servicemen-topic-hero {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 23px;
  background:
    linear-gradient(135deg, rgba(17, 37, 69, 0.96), rgba(9, 19, 36, 0.96)),
    var(--sm-panel-strong);
}

.servicemen-topic-hero__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(96, 165, 250, 0.26);
  border-radius: 20px;
  background: rgba(37, 99, 235, 0.14);
  color: #7dd3fc;
  font-size: 29px;
}

.servicemen-topic-hero h1 {
  max-width: 960px;
  font-size: clamp(32px, 4.6vw, 52px);
}

.servicemen-topic-hero p {
  max-width: 820px;
  margin: 16px 0 0;
  color: #aebdd0;
  font-size: 16px;
  line-height: 1.65;
}

.servicemen-topic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 18px;
  color: #7f91a9;
  font-size: 11px;
}

.servicemen-topic-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.servicemen-topic-meta i {
  color: #5b8fd4;
}

.servicemen-section--children {
  padding-top: 34px;
}

.servicemen-richtext--article {
  max-width: 900px;
  margin: 48px auto 0;
  color: #bcc8d8;
  font-size: 16px;
  line-height: 1.78;
}

.servicemen-richtext--article h2,
.servicemen-copy-section h2 {
  margin: 42px 0 15px;
  color: #f5f8fd;
  font-family: "Manrope", sans-serif;
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.servicemen-richtext--article h2:first-child,
.servicemen-copy-section:first-child h2 {
  margin-top: 0;
}

.servicemen-richtext--article h3 {
  margin: 30px 0 12px;
  color: #eaf1fb;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 680;
}

.servicemen-richtext--article p + p,
.servicemen-copy-section p + p {
  margin-top: 14px;
}

.servicemen-richtext--article ul,
.servicemen-richtext--article ol,
.servicemen-copy-section ul,
.servicemen-copy-section ol {
  display: grid;
  gap: 10px;
  margin: 17px 0;
  padding-left: 24px;
}

.servicemen-richtext--article ul,
.servicemen-copy-section ul {
  list-style: disc;
}

.servicemen-richtext--article ol,
.servicemen-copy-section ol {
  list-style: decimal;
}

.servicemen-richtext--article li::marker,
.servicemen-copy-section li::marker {
  color: #60a5fa;
  font-weight: 700;
}

.servicemen-richtext--article a {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.servicemen-richtext--article blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 3px solid #3b82f6;
  border-radius: 0 12px 12px 0;
  background: rgba(37, 99, 235, 0.09);
  color: #c9d6e7;
}

.servicemen-section--module,
.servicemen-section--related {
  padding-top: 54px;
}

.servicemen-documents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.servicemen-document-card {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  align-items: start;
  padding: 21px;
  border: 1px solid var(--sm-line);
  border-radius: 16px;
  background: rgba(15, 28, 49, 0.72);
}

.servicemen-document-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.13);
  color: #7dd3fc;
}

.servicemen-document-card h3 {
  margin: 0;
  color: #f0f5fc;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 680;
  line-height: 1.45;
}

.servicemen-document-card p {
  margin: 8px 0 0;
  color: #8fa0b7;
  font-size: 12px;
  line-height: 1.55;
}

.servicemen-document-card > a,
.servicemen-document-card__unavailable {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.12);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.servicemen-document-card__unavailable {
  border-color: rgba(148, 163, 184, 0.13);
  background: rgba(148, 163, 184, 0.05);
  color: #7e8da2;
}

.servicemen-empty-state {
  padding: 22px;
  border: 1px dashed rgba(148, 163, 184, 0.22);
  border-radius: 13px;
  color: #8fa0b7;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1050px) {
  .servicemen-hero {
    grid-template-columns: 1fr;
  }

  .servicemen-hero__navigator {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .servicemen-hero__navigator > span {
    grid-column: 1 / -1;
  }

  .servicemen-hero__navigator a:nth-last-child(2) {
    border-bottom: 0;
  }

  .servicemen-card-grid--main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .servicemen-service-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .servicemen-page {
    padding-top: 8px;
  }

  .servicemen-breadcrumbs {
    font-size: 11px;
  }

  .servicemen-subnav {
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .servicemen-hero {
    padding: 26px 20px;
    border-radius: 19px;
  }

  .servicemen-hero h1,
  .servicemen-topic-hero h1 {
    font-size: 34px;
  }

  .servicemen-hero__actions,
  .servicemen-expert__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .servicemen-hero__actions > *,
  .servicemen-expert__actions > * {
    width: 100%;
  }

  .servicemen-hero__trust {
    display: grid;
  }

  .servicemen-hero__navigator {
    display: flex;
  }

  .servicemen-hero__navigator a:nth-last-child(2) {
    border-bottom: 1px solid rgba(148, 163, 184, 0.13);
  }

  .servicemen-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .servicemen-card-grid,
  .servicemen-card-grid--main,
  .servicemen-documents-grid {
    grid-template-columns: 1fr;
  }

  .servicemen-service-card {
    padding: 24px 18px;
    border-radius: 19px;
  }

  .servicemen-service-form {
    padding: 17px;
  }

  .servicemen-form-grid {
    grid-template-columns: 1fr;
  }

  .servicemen-form-field label {
    min-height: 0;
  }

  .servicemen-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .servicemen-expert {
    grid-template-columns: 1fr;
  }

  .servicemen-expert__visual {
    display: none;
  }

  .servicemen-topic-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 25px 20px;
    border-radius: 19px;
  }

  .servicemen-topic-hero__icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 23px;
  }

  .servicemen-richtext--article {
    margin-top: 36px;
    font-size: 15px;
    line-height: 1.72;
  }

  .servicemen-faq-item summary {
    padding: 17px;
    font-size: 14px;
  }

  .servicemen-faq-item__answer {
    padding: 0 17px 17px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .servicemen-card,
  .servicemen-card__arrow,
  .servicemen-hero__navigator a,
  .servicemen-faq-item summary i {
    transition: none;
  }
}

