.srvc-page {
  --srvc-blue: #245cd7;
  --srvc-blue-dark: #0f56b8;
  --srvc-navy: #14365c;
  --srvc-navy-2: #1b3f68;
  --srvc-teal: #277379;
  --srvc-teal-dark: #236b68;
  --srvc-body: #4a5a6b;
  --srvc-muted: #6b7a8a;
  --srvc-lilac: #eef1fb;
  --srvc-card: #f6f9ff;
  --srvc-border: #dbe5f7;
  --srvc-white: #fff;
  --srvc-radius: 14px;
  --srvc-shadow: 0 10px 30px rgba(20, 54, 92, 0.07);
  --srvc-maxw: 1240px;
  line-height: 1.65;
}

.srvc-page *,
.srvc-page *::before,
.srvc-page *::after {
  box-sizing: border-box;
}

.srvc-page p,
.srvc-page h1,
.srvc-page h2,
.srvc-page h3,
.srvc-page h4,
.srvc-page ul,
.srvc-page ol,
.srvc-page li,
.srvc-page figure {
  margin: 0;
  padding: 0;
}

.srvc-page ul,
.srvc-page ol {
  list-style: none;
}

.srvc-page img {
  max-width: 100%;
  display: block;
}

.srvc-page a {
  text-decoration: none;
  color: inherit;
}

.srvc-page button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.srvc-page :focus-visible {
  outline: 2px solid var(--srvc-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.srvc-wrap {
  width: 100%;
  max-width: var(--srvc-maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */

.srvc-h2 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--srvc-navy);
  text-align: center;
  letter-spacing: -0.2px;
}

.srvc-h2 .srvc-hl {
  color: var(--srvc-blue);
}

.srvc-lead {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--srvc-muted);
}

/* ---------- Buttons ---------- */

.srvc-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--srvc-blue);
  transition: background 0.2s ease;
}

.srvc-btn:hover {
  background: var(--srvc-blue-dark);
}

.srvc-btn__ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.srvc-btn__ico svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.srvc-btn--teal {
  background: var(--srvc-teal);
}

.srvc-btn--teal:hover {
  background: var(--srvc-teal-dark);
}

.srvc-btn--call {
  padding: 8px 26px 8px 8px;
  gap: 12px;
  flex-direction: row;
}

.srvc-btn--call .srvc-btn__ico {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.2);
}

.srvc-btn--call .srvc-btn__txt {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: left;
}

.srvc-btn--call .srvc-btn__txt small {
  font-size: 10.5px;
  font-weight: 300;
  opacity: 0.85;
}

.srvc-btn--call .srvc-btn__txt strong {
  font-size: 14.5px;
  font-weight: 600;
}

.srvc-btn--white {
  background: #fff;
  color: var(--srvc-navy);
}

.srvc-btn--white:hover {
  background: #f1f5ff;
}

.srvc-btn--white .srvc-btn__ico {
  background: var(--srvc-blue);
}

.srvc-btn--ghost {
  background: #fff;
  color: var(--srvc-navy);
}

/* ============================================================
   1. HERO
   ============================================================ */

.srvc-hero {
  padding: 22px 0 46px;
}

.srvc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--srvc-muted);
  padding: 0 0 12px 8px;
}

.srvc-breadcrumb span[aria-current] {
  color: var(--srvc-blue);
}

.srvc-breadcrumb i {
  font-style: normal;
  opacity: 0.5;
}

.srvc-hero__box {
  position: relative;
  border-radius: 18px;
  overflow: visible;
  min-height: 430px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.srvc-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(120deg, #f2f2f2 0%, #ededed 45%, #e2e3e6 100%);
}

.srvc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.srvc-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #f0f0f0 0%,
    #eeeeee 42%,
    rgba(238, 238, 238, 0.82) 52%,
    rgba(238, 238, 238, 0) 66%
  );
}

.srvc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 48px 40px 0;
}

.srvc-hero__title {
  font-size: 40px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--srvc-navy);
  letter-spacing: -0.6px;
  margin-bottom: 20px;
}

.srvc-hero__title .srvc-hl {
  color: var(--srvc-blue);
}

.srvc-hero__content p {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--srvc-body);
  margin-bottom: 14px;
  max-width: 470px;
}

.srvc-hero__actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
  transform: translateY(50%);
  width: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.srvc-hero__hours {
  position: absolute;
  right: 46px;
  bottom: 74px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: 0 8px 24px rgba(20, 54, 92, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}

.srvc-hero__hours svg {
  width: 20px;
  height: 20px;
  stroke: var(--srvc-navy);
  fill: none;
  stroke-width: 1.7;
  flex: 0 0 auto;
}

.srvc-hero__hours span {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--srvc-navy);
  font-weight: 500;
}

/* ============================================================
   2. SITUATIONS
   ============================================================ */

.srvc-situations {
  padding: 66px 0 70px;
}

.srvc-situations .srvc-h2 {
  max-width: 620px;
  margin: 0 auto 34px;
}

.srvc-situations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.srvc-scard {
  background: var(--srvc-card);
  border: 1px solid var(--srvc-border);
  border-radius: var(--srvc-radius);
  padding: 24px 22px;
}

.srvc-scard__ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--srvc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.srvc-scard__ico svg {
  width: 19px;
  height: 19px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}

.srvc-scard__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--srvc-navy);
  margin-bottom: 10px;
}

.srvc-scard__intro {
  font-size: 12px;
  line-height: 1.7;
  color: var(--srvc-muted);
  margin-bottom: 12px;
}

.srvc-scard__list li {
  position: relative;
  padding-left: 16px;
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--srvc-body);
  margin-bottom: 11px;
}

.srvc-scard__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--srvc-blue);
  font-size: 14px;
  line-height: 1.4;
}

.srvc-situations__figure {
  border-radius: var(--srvc-radius);
  overflow: hidden;
  background: #e9eef7;
  min-height: 100%;
}

.srvc-situations__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   3. PROCESS
   ============================================================ */

.srvc-process {
  background: var(--srvc-lilac);
  padding: 62px 0 74px;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .srvc-process {
    overflow-x: hidden;
  }
}

.srvc-process .srvc-h2 {
  max-width: 620px;
  margin: 0 auto 10px;
}

.srvc-process__sub {
  text-align: center;
  color: var(--srvc-blue);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 34px;
}

.srvc-process__rail {
  position: relative;
  margin-bottom: 0;
}

.srvc-process__line {
  position: absolute;
  top: 15px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
  background: repeating-linear-gradient(
    90deg,
    #c3d0e8 0 6px,
    transparent 6px 12px
  );
}

.srvc-process__dots {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.srvc-process__dot {
  position: relative;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--srvc-blue);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 4px solid var(--srvc-lilac);
  box-sizing: content-box;
}

.srvc-process__dot::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 22px;
  background: repeating-linear-gradient(
    180deg,
    #c3d0e8 0 5px,
    transparent 5px 10px
  );
}

.srvc-process__chev {
  position: absolute;
  left: 50%;
  top: 9px;
  transform: translateX(-50%);
  color: #9bb0d4;
  font-size: 14px;
  line-height: 1;
  background: var(--srvc-lilac);
  padding: 0 8px;
}

.srvc-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.srvc-pcard {
  background: #fff;
  border: 1px solid var(--srvc-border);
  border-radius: var(--srvc-radius);
  padding: 24px 20px 26px;
  text-align: center;
  box-shadow: var(--srvc-shadow);
}

.srvc-pcard__ico {
  margin: 0 auto 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srvc-pcard__ico svg {
  width: 30px;
  height: 30px;
  stroke: var(--srvc-blue);
  fill: none;
  stroke-width: 1.5;
}

.srvc-pcard__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--srvc-navy);
  margin-bottom: 10px;
  line-height: 1.45;
}

.srvc-pcard p {
  font-size: 11px;
  line-height: 1.75;
  color: var(--srvc-muted);
}

/* ============================================================
   4. TRUST STRIP
   ============================================================ */

.srvc-trust {
  background: var(--srvc-teal);
  color: #fff;
  padding: 44px 0 48px;
  position: relative;
  overflow: hidden;
}

.srvc-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(
      circle at 12% 30%,
      rgba(255, 255, 255, 0.5) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 78% 70%,
      rgba(255, 255, 255, 0.5) 0 1px,
      transparent 1px
    );
  background-size: 120px 120px, 160px 160px;
}

.srvc-trust__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.srvc-trust__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.srvc-trust__ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.srvc-trust__ico svg {
  width: 19px;
  height: 19px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
}

.srvc-trust__head h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.srvc-trust__grid p {
  font-size: 11.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 280px;
}

/* ============================================================
   5. CONTACT
   ============================================================ */

.srvc-contact {
  padding: 62px 0 72px;
}

.srvc-contact__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px;
}

.srvc-contact__head .srvc-h2 {
  margin-bottom: 14px;
}

.srvc-contact__head p {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--srvc-muted);
}

.srvc-contact__panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #eff4ff;
  align-items: stretch;
}

.srvc-contact__media {
  background: #dde6f4;
  min-height: 100%;
}

.srvc-contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.srvc-contact__form {
  background: #fff;
  border: 1px solid var(--srvc-border);
  border-radius: 14px;
  margin: 18px;
  padding: 26px 28px 24px;
}

.srvc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.srvc-page .srvc-input,
.srvc-page .srvc-select,
.srvc-page .srvc-textarea {
  width: 100%;
  background: #f6f8fc;
  border: 1px solid var(--srvc-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12.5px;
  color: var(--srvc-navy);
  font-family: inherit;
  transition: border-color 0.18s ease;
}

.srvc-page .srvc-input::placeholder,
.srvc-page .srvc-textarea::placeholder {
  color: #9aa8b8;
}

.srvc-page .srvc-select {
  color: #9aa8b8;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa8b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 34px;
}

.srvc-page .srvc-textarea {
  min-height: 118px;
  resize: vertical;
  margin-bottom: 16px;
}

.srvc-page .srvc-input:focus,
.srvc-page .srvc-select:focus,
.srvc-page .srvc-textarea:focus {
  border-color: var(--srvc-blue);
  outline: none;
}

.srvc-form__consent {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  color: var(--srvc-muted);
  margin-bottom: 18px;
}

.srvc-form__consent input {
  width: 14px;
  height: 14px;
  accent-color: var(--srvc-blue);
}

.srvc-form__note {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.srvc-form__note svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  stroke: var(--srvc-blue);
  fill: none;
  stroke-width: 1.8;
  margin-top: 2px;
}

.srvc-form__note p {
  font-size: 9.5px;
  line-height: 1.7;
  color: var(--srvc-muted);
}

/* ============================================================
   6. FAQ
   ============================================================ */

.srvc-faq {
  background: var(--srvc-lilac);
  padding: 64px 0 72px;
}

.srvc-faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  align-items: start;
}

.srvc-faq__title {
  font-size: 27px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--srvc-navy);
}

.srvc-faq__title .srvc-hl {
  color: var(--srvc-blue);
}

.srvc-faq__mark {
  margin-top: 34px;
  opacity: 0.3;
  max-width: 230px;
}

.srvc-acc__item {
  border-bottom: 1px solid #dfe5f2;
}

.srvc-acc__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  padding: 20px 4px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--srvc-navy);
  line-height: 1.45;
}

.srvc-acc__chev {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 4px;
  stroke: var(--srvc-navy);
  fill: none;
  stroke-width: 2;
  transition: transform 0.25s ease;
}

.srvc-acc__item.is-open .srvc-acc__chev {
  transform: rotate(180deg);
}

.srvc-acc__panel {
  display: none;
  padding: 0 46px 22px 4px;
}

.srvc-acc__item.is-open .srvc-acc__panel {
  display: block;
}

.srvc-acc__panel p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--srvc-muted);
}

.srvc-faq__more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* ============================================================
   7. SERVICES
   ============================================================ */

.srvc-services {
  padding: 66px 0 72px;
}

.srvc-services .srvc-h2 {
  max-width: 560px;
  margin: 0 auto 34px;
}

.srvc-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.srvc-sv {
  position: relative;
  border-radius: var(--srvc-radius);
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: #1b3f68;
}

.srvc-sv img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.srvc-sv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 38, 64, 0.15) 0%,
    rgba(15, 38, 64, 0.55) 42%,
    rgba(13, 32, 55, 0.94) 100%
  );
}

.srvc-sv__body {
  position: relative;
  z-index: 2;
  padding: 22px 20px 24px;
}

.srvc-sv__title {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}

.srvc-sv__body p {
  font-size: 10.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.srvc-sv__go {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srvc-sv__go svg {
  width: 13px;
  height: 13px;
  stroke: var(--srvc-navy);
  fill: none;
  stroke-width: 2.2;
}

.srvc-sv__brand {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 3;
  height: 14px;
  opacity: 0.9;
}

/* ============================================================
   8. CTA BAND
   ============================================================ */

.srvc-cta {
  background: var(--srvc-teal);
  color: #fff;
  padding: 40px 0 44px;
  position: relative;
  overflow: hidden;
}

.srvc-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(
      circle at 20% 40%,
      rgba(255, 255, 255, 0.5) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 70% 75%,
      rgba(255, 255, 255, 0.5) 0 1px,
      transparent 1px
    );
  background-size: 130px 130px, 170px 170px;
}

.srvc-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 40px;
  align-items: start;
}

.srvc-cta__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.srvc-cta__head svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  flex: 0 0 auto;
  margin-top: 2px;
}

.srvc-cta__head h2 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
}

.srvc-cta__lead {
  font-size: 11.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin-bottom: 24px;
}

.srvc-cta__facts {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.srvc-cta__fact {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
  line-height: 1.45;
}

.srvc-cta__fact span {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.srvc-cta__fact svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
}

.srvc-cta__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 54px;
}

.srvc-cta__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  text-align: right;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .srvc-situations__grid {
    grid-template-columns: 1fr 1fr;
  }

  .srvc-situations__figure {
    grid-column: 1 / -1;
    min-height: 280px;
    order: -1;
  }

  .srvc-process__grid,
  .srvc-process__dots {
    grid-template-columns: 1fr 1fr;
  }

  .srvc-process__line,
  .srvc-process__chev,
  .srvc-process__dot::after {
    display: none;
  }

  .srvc-process__dots {
    gap: 22px;
    margin-bottom: 8px;
  }

  .srvc-trust__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .srvc-contact__panel {
    grid-template-columns: 1fr;
  }

  .srvc-contact__media {
    min-height: 260px;
  }

  .srvc-faq__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .srvc-faq__mark {
    display: none;
  }

  .srvc-services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .srvc-cta__inner {
    grid-template-columns: 1fr;
  }

  .srvc-cta__side {
    align-items: flex-start;
    gap: 20px;
  }

  .srvc-cta__label {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .srvc-hero__box {
    min-height: 0;
  }

  .srvc-hero__media::after {
    background: linear-gradient(
      180deg,
      rgba(238, 238, 238, 0.96) 0 55%,
      rgba(238, 238, 238, 0.7) 100%
    );
  }

  .srvc-hero__content {
    padding: 30px 22px 22px;
  }

  .srvc-hero__actions {
    transform: none;
    margin-top: 22px;
  }

  .srvc-hero__title {
    font-size: 28px;
  }

  .srvc-hero__hours {
    position: static;
    margin: 0 22px 26px;
  }

  .srvc-h2 {
    font-size: 23px;
  }

  .srvc-situations__grid,
  .srvc-process__grid,
  .srvc-process__dots,
  .srvc-services__grid,
  .srvc-form__row {
    grid-template-columns: 1fr;
  }

  .srvc-faq__title {
    font-size: 22px;
  }

  .srvc-contact__form {
    margin: 12px;
    padding: 20px;
  }
}

