.ServicePageblock {
  padding: clamp(14px, 2vw, 20px);
  background: linear-gradient(180deg, #f4fbfd 0%, #ffffff 100%);
  height: calc(100vh - var(--header-height));
  overflow: hidden;
}
@media (max-width: 1200px) {
  .ServicePageblock {
    overflow-y: auto;
    overflow-x: hidden;
  }
}
@media (max-width: 620px) {
  .ServicePageblock {
    padding-inline: 10px;
  }
}

.ServicePagetext {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: clamp(11px, 2vw, 10px);
  min-height: 0;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .ServicePagetext {
    order: 0;
    flex: none;
    min-height: unset;
    width: 100%;
    text-align: center;
    overflow: visible;
  }
}

.ServicePageScrollArea {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  margin-top: 14px;
}
@media (max-width: 1200px) {
  .ServicePageScrollArea {
    flex: none;
    min-height: unset;
    overflow: visible;
  }
}

.ServicePagetitle {
  font-size: 24px;
  color: #560843;
  margin: 0;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 850px) {
  .ServicePagetitle {
    font-size: 20px;
  }
}

.ServicePagesubtitle {
  font-size: 16px;
  color: #560843;
  margin-bottom: 15px;
  font-weight: 500;
  margin-top: 0;
  text-align: center;
}
@media (max-width: 850px) {
  .ServicePagesubtitle {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .ServicePagesubtitle {
    font-size: 12px;
  }
}

.ServicePagedescription {
  font-size: 16px;
  color: white;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 850px) {
  .ServicePagedescription {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .ServicePagedescription {
    font-size: 11px;
  }
}

.ServicePagedescriptionDesc {
  font-size: 14px;
  color: #1e1e1e;
  line-height: 1.45;
  margin: 0;
  text-align: center;
}
@media (max-width: 850px) {
  .ServicePagedescriptionDesc {
    font-size: 12px;
  }
}

.ServicePagegallery {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}

.ServicePageerror {
  text-align: center;
  color: #e74c3c;
  font-size: 14px;
  padding: 20px;
}

.ServicePageskeletonTitle,
.ServicePageskeletonSubtitle,
.ServicePageskeletonText,
.ServicePageskeletonImage {
  background: linear-gradient(90deg, rgba(242, 246, 248, 0.9) 0%, rgba(214, 230, 236, 0.9) 50%, rgba(242, 246, 248, 0.9) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.ServicePageskeletonTitle {
  height: 40px;
  margin: 0 auto 20px;
}

.ServicePageskeletonSubtitle {
  height: 30px;
  margin: 0 auto 20px;
}

.ServicePageskeletonText {
  width: 80%;
  height: 20px;
  margin: 0 auto 10px;
}

.ServicePageskeletonImage {
  width: 100%;
  height: clamp(220px, 35vw, 320px);
  border-radius: 20px;
  border: 1px solid rgba(2, 132, 137, 0.08);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.ServicePagewrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  margin: 0 auto;
  height: 100%;
  min-height: 0;
}
@media (max-width: 1200px) {
  .ServicePagewrapper {
    flex-direction: column;
    height: auto;
  }
}

.ServicePagecontent {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  gap: clamp(18px, 2vw, 32px);
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(16px, 2vw, 21px);
  border: 1px solid rgba(2, 132, 137, 0.08);
  box-shadow: 0 10px 24px rgba(6, 32, 36, 0.06);
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
@media (max-width: 450px) {
  .ServicePagecontent {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .ServicePagecontent {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
}

.ServicePageFormFallback {
  min-width: min(420px, 100%);
  min-height: 300px;
  padding: 32px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  color: #475569;
}

.ServicePageFormSpinner {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 5px solid rgba(0, 211, 219, 0.2);
  border-top-color: #00d3db;
  animation: servicePageSpin 0.9s linear infinite;
}

@keyframes servicePageSpin {
  to {
    transform: rotate(360deg);
  }
}
.ServicePagecontentLeft {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  width: inherit;
  border-radius: 20px;
  padding: clamp(16px, 2vw, 26px);
  border: 1px solid rgba(2, 132, 137, 0.08);
}
@media (max-width: 1200px) {
  .ServicePagecontentLeft {
    order: 1;
    flex: none;
    height: auto;
    min-height: unset;
    overflow: visible;
    width: 100%;
  }
}

.ServicePageWrapSubContent {
  margin-top: 14px;
}

.ServicePageDoctorsHint {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4b5563;
  text-align: center;
}

.ServicePageWrapSubWrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 15px;
  width: 100%;
  justify-content: center;
}
.ServicePageWrapSubWrap > :global(.ButtonRequestDesktopOnly),
.ServicePageWrapSubWrap > :global(.ButtonRequestMobileOnly),
.ServicePageWrapSubWrap > a {
  display: flex;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 100%;
}
.ServicePageWrapSubWrap > :global(.ButtonRequestDesktopOnly) > label,
.ServicePageWrapSubWrap > :global(.ButtonRequestMobileOnly) > label {
  display: flex;
  width: 100%;
}
@media (max-width: 450px) {
  .ServicePageWrapSubWrap {
    gap: 8px;
    min-width: 0;
  }
  .ServicePageWrapSubWrap > :global(.ButtonRequestDesktopOnly),
  .ServicePageWrapSubWrap > :global(.ButtonRequestMobileOnly),
  .ServicePageWrapSubWrap > a {
    min-width: 0;
    flex-basis: 100%;
  }
}

.ServicePageWrapSubblock {
  position: relative;
  background: #ac56a1;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(4, 54, 66, 0.18);
  transition: box-shadow 0.2s ease;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  flex: 1 1 auto;
  min-width: 0;
  padding: 18px 18px 12px;
  text-decoration: none;
  color: #ffffff;
}
.ServicePageWrapSubblock:hover {
  box-shadow: 0 12px 22px rgba(4, 54, 66, 0.22);
}
.ServicePageWrapSubblock:visited, .ServicePageWrapSubblock:active, .ServicePageWrapSubblock:focus {
  color: #ffffff;
  text-decoration: none;
}

.ServicePagePromoLabel {
  top: 8px;
  right: 10px;
  transform: none;
  animation: none;
  padding: 4px 9px;
  border-radius: 999px;
  z-index: 2;
}
.ServicePagePromoLabel::before {
  display: none;
}
@media (max-width: 767px) {
  .ServicePagePromoLabel {
    top: 2px;
    right: 4px;
    padding: 2px 8px;
    transform: rotate(4deg);
  }
}
@media (max-width: 560px) {
  .ServicePagePromoLabel {
    top: -4px;
    right: 2px;
    padding: 1px 7px;
  }
}
@media (max-width: 420px) {
  .ServicePagePromoLabel {
    top: -6px;
    right: 0;
    padding: 1px 6px;
  }
}
@media (max-height: 767px) {
  .ServicePagePromoLabel {
    top: -4px;
    padding: 1px 7px;
  }
}

@media (max-width: 620px) {
  .ServicePagecontent {
    padding-top: 20px;
  }
}
.ServicePageAccordion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: min-content;
  gap: 12px;
}
@media (max-width: 950px) {
  .ServicePageAccordion {
    grid-template-columns: 1fr;
  }
}

.ServicePageAccordionItem {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(2, 132, 137, 0.08);
  align-self: start;
  background: linear-gradient(to right, #23d1ed, #b49ebd);
  appearance: none;
  width: 100%;
  padding: 0;
  cursor: pointer;
  text-align: inherit;
  display: block;
}

.ServicePageAccordionSummary {
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52px;
  color: white;
}

.ServicePageAccordionItem:hover {
  box-shadow: 0 8px 18px rgba(6, 32, 36, 0.08);
}

.ServicePageAccordionItem:focus-visible {
  outline: 2px solid rgba(2, 132, 137, 0.35);
  outline-offset: 2px;
}

.ServicePageSectionDrawer {
  width: min(520px, 92vw);
}

.ServicePageSectionDrawerHeader {
  background: #f7fafc;
}

.ServicePageSectionDrawerTitle {
  color: #062024;
}

.ServicePageSectionDrawerClose {
  border: 1px solid rgba(2, 132, 137, 0.18);
  color: #062024;
}

.ServicePageSectionDrawerClose:hover {
  background-color: rgba(2, 132, 137, 0.06);
  border-color: rgba(2, 132, 137, 0.28);
}

.ServicePageSectionDrawerBody .ServicePageSectionText {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(6, 32, 36, 0.85);
}
.ServicePageSectionDrawerBody .ServicePageList {
  margin: 0;
  padding-left: 18px;
}
.ServicePageSectionDrawerBody .ServicePageListItem {
  margin: 8px 0;
  color: rgba(6, 32, 36, 0.85);
}
.ServicePageSectionDrawerBody .ServicePageCards {
  gap: 12px;
}
.ServicePageSectionDrawerBody .ServicePageCard {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 137, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(6, 32, 36, 0.06);
}
.ServicePageSectionDrawerBody .ServicePageCardTitle {
  color: #062024;
}
.ServicePageSectionDrawerBody .ServicePageCardText {
  color: rgba(6, 32, 36, 0.82);
}

.ServicePageSectionText {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #1e1e1e;
}

.ServicePageFaqList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.ServicePageFaqItem {
  position: relative;
  background-color: #f0f0f0;
  border-radius: 20px;
  font-size: 14px;
  color: #062024;
  transition: background-color 0.2s ease, color 0.2s ease;
  overflow: hidden;
}
.ServicePageFaqItem:hover, .ServicePageFaqItem[open] {
  background-color: #e0e0e0;
}
@media (max-width: 850px) {
  .ServicePageFaqItem {
    font-size: 12px;
  }
}

.ServicePageFaqSummary {
  list-style: none;
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 600;
  user-select: none;
}
.ServicePageFaqSummary::-webkit-details-marker {
  display: none;
}

.ServicePageFaqAnswerWrap {
  padding: 0 16px 16px;
}

.ServicePageFaqAnswer {
  background-color: #ffffff;
  color: #2a3c4d;
  padding: 10px 14px;
  border: 1px solid #2a3c4d;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(42, 60, 77, 0.24);
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}
@media (max-width: 850px) {
  .ServicePageFaqAnswer {
    font-size: 14px;
  }
}

.ServicePageList {
  margin: 0;
  padding-left: 18px;
}

.ServicePageListItem {
  font-size: 14px;
  line-height: 1.55;
  color: #1e1e1e;
  margin: 6px 0;
}

.ServicePageCards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ServicePageCard {
  background: #f6f3ef;
  border-radius: 14px;
  padding: 12px;
}

.ServicePageCardTitle {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.ServicePageCardText {
  font-size: 13px;
  line-height: 1.5;
  color: #1e1e1e;
}

@media (max-width: 950px) {
  .ServicePageCards {
    grid-template-columns: 1fr;
  }
}