:root {
  --white: #ffffff;
  --bg: #ffffff;
  --soft: #817085;
  --soft-2: #f3ede7;
  --soft-3: #664e6b;
  --ink: #2e2c2b;
  --text: #444140;
  --muted: #757070;
  --line: #e4ddd5;
  --accent: #b08d80;
  --accent-dark: #8f6f63;
  --display: "Playfair Display", Georgia, serif;
  --body: "Mulish", "Segoe UI", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}

h1 {
  font-size: 46px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 19px;
}

p {
  color: var(--text);
}


.video-shape {
  width: 100%;
  height: 700px;
  max-width: 500px;
  overflow: hidden;

  border-top-left-radius: 220px;
  border-bottom-right-radius: 220px;
}

.video-shape video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bg-soft {
  background-color: var(--soft);
}

.bg-soft-2 {
  background-color: var(--soft-2);
}

.eyebrow {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.center {
  text-align: center;
}

@media (max-width: 900px) {
  .video-shape {
    height: 500px;
  }
}

.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft);
  background-color: var(--white);
  padding: 15px 34px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  background-color: var(--soft-2);
  border-color: var(--soft-2);
}

.btn-outline {
  color: var(--ink);
  background-color: transparent;
  border: 1px solid var(--ink);
}

.btn-outline:hover {
  background-color: var(--ink);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  outline: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: white;
  line-height: 1.1;
}

.brand-est {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

@media (max-width: 767px) {
  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-est {
    font-size: 9px;
    letter-spacing: 2px;
  }
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
}

.nav-list > li {
  position: relative;
  margin-left: 30px;
}

.nav-link {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 6px;
  padding-bottom: 6px;
}

.nav-link:hover {
  color: var(--accent);
}

.dropdown-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
}

.dropdown-toggle:hover {
  color: var(--accent);
}

.caret {
  display: inline-block;
  margin-left: 7px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: 32px;
  left: 0;
  min-width: 260px;
  background-color: var(--white);
  border: 1px solid var(--line);
  display: none;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 8px;
}

.has-dropdown.is-open .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 11px 18px;
}

.dropdown-menu a:hover {
  background-color: var(--soft);
  color: white;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background-color: var(--ink);
  margin-top: 3px;
  margin-bottom: 3px;
}

.hero {
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  padding-right: 40px;
}

.hero-text h1 {
  margin-bottom: 22px;
  color: white;
}

.hero-text p {
  color: var(--white);
  margin-bottom: 28px;
}

.hero-images {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
}

.hero-images img, .hero-images video {
  max-height: 700px;
  object-fit: cover;
}

.hero-images img:first-child {
  margin-right: 14px;
}

.media-img {
  max-height: 600px;
  object-fit: cover;
  margin: 0 auto;
}

.split {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.split.is-reverse {
  flex-direction: row-reverse;
}

.split-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
}

.split.is-centered .split-text {
  align-items: center;
  text-align: center;
}

.split-text h2 {
  margin-bottom: 18px;
  color: white;
}

.split-text p {
  margin-bottom: 18px;
  color: white;
}

.split-media {
  width: 42%;
}

.section-title {
  margin-bottom: 14px;
}

.color-w{
  color: white!important;
}

.color-b{
  color: black!important;
}

.color-brand {
  color: #817085!important;
}

.section-intro {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  color: var(--text);
}

.steps {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 33.33%;
  padding-left: 26px;
  padding-right: 26px;
  margin-bottom: 44px;
}

.step-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 20px;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  color: var(--text);
}

.features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 25%;
  padding-left: 22px;
  padding-right: 22px;
  margin-bottom: 36px;
}

.rbt-inner .feature {
  width: 50%;
}

.feature h3 {
  margin-bottom: 12px;
}

.feature p {
  color: var(--text);
}

.list-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
}

.list-item {
  margin-bottom: 22px;
  color: white;
}

.list-item strong {
  color: white;
  font-weight: 700;
}

.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery img {
  width: 240px;
  height: 360px;
  object-fit: cover;
  margin: 7px;
}

.gallery.is-strip img {
  width: 200px;
  height: 300px;
}

.btn-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.faq {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding-top: 24px;
  padding-bottom: 24px;
}

.faq-item h4 {
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--text);
}

.contact-block {
  display: flex;
  flex-direction: column;
}

.contact-block .contact-line {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-contact h2 {
  margin-bottom: 22px;
  color: white;
}

.footer-contact p {
  color: white;
  margin-bottom: 6px;
}

.footer-contact .footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 20px;
}

.footer-contact .footer-note {
  max-width: 520px;
  margin-top: 6px;
  margin-bottom: 22px;
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 34px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-bottom .brand-name {
  font-size: 22px;
}

.footer-bottom .footer-pages {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 18px;
}

.footer-bottom .footer-pages a {
  font-size: 14px;
  color: white;
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 8px;
}

.footer-bottom .footer-pages a:hover {
  color: var(--accent);
}

.footer-bottom .copyright {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.thumb {
  width: 120px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
}

.media-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.media-center .media-img {
  max-width: 620px;
}

.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-centered h1 {
  margin-bottom: 20px;
}

.hero-centered p {
  margin-bottom: 26px;
}

.spaced-top {
  margin-top: 48px;
}

img.is-fallback {
  opacity: 0;
}

.media-img,
.gallery img,
.hero-images img {
  background-color: var(--soft-2);
}

@media (max-width: 900px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    max-width: 84vw;
    background-color: var(--white);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 90px;
    padding-left: 28px;
    padding-right: 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-list > li {
    margin-left: 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .dropdown-menu {
    position: static;
    border: none;
    padding-left: 12px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-inner,
  .split,
  .split.is-reverse {
    flex-direction: column;
  }

  .hero-text,
  .hero-images,
  .split-text,
  .split-media {
    width: 100%;
  }

  .hero-text {
    padding-right: 0;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-images {
    justify-content: center;
  }
  .hero-images img{
    margin: 0;
  }

  .split-media {
    margin-top: 30px;
  }

  .step {
    width: 50%;
  }

  .feature {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .section { padding-top: 56px; padding-bottom: 56px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }

  .step {
    width: 100%;
  }

  .feature {
    width: 100%;
  }

  .gallery img,
  .gallery.is-strip img {
    width: 44%;
    height: 240px;
  }

  .footer-bottom .footer-pages {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
}



.rbt-section {
  width: 100%;
  padding: 85px 0;
  background: #ffffff;
  overflow: hidden;
}

.rbt-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.rbt-image {
  width: 67%;
  display: flex;
}

.rbt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rbt-content {
  width: 50%;
  min-height: 570px;
  background: #817085;
  margin-left: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.rbt-inner {
  width: 100%;
  max-width: 550px;
  padding: 60px 30px;
}

.rbt-content h2 {
  margin: 0 0 55px;
  color: #e8e3e8;
  font-size: 32px;
  line-height: 1.32;
  font-weight: 700;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
}

.rbt-text {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.rbt-text p {
  margin: 0;
  color: #f2eef2;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.rbt-text strong {
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 1400px) {
  .rbt-section {
    padding: 70px 0;
  }

  .rbt-image {
    width: 68%;
    height: 500px;
  }

  .rbt-content {
    width: 48%;
    min-height: 530px;
    margin-left: -24%;
  }

  .rbt-content h2 {
    font-size: 29px;
    margin-bottom: 42px;
  }

  .rbt-text p {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .rbt-section {
    padding: 50px 20px;
  }

  .rbt-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .rbt-image {
    width: 100%;
    height: 420px;
  }

  .rbt-content {
    width: 88%;
    min-height: auto;
    margin: -90px auto 0;
  }

  .rbt-inner {
    max-width: 560px;
    padding: 50px 35px;
  }

  .rbt-content h2 {
    font-size: 28px;
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .rbt-section {
    padding: 35px 15px;
  }

  .rbt-image {
    height: 300px;
  }

  .rbt-content {
    width: 92%;
    margin-top: -45px;
  }

  .rbt-inner {
    padding: 35px 22px;
  }

  .rbt-content h2 {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 28px;
  }

  .rbt-text
  .rbt-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .rbt-section {
    padding: 25px 12px;
  }

  .rbt-image {
    height: 250px;
  }

  .rbt-content {
    width: 100%;
    margin-top: 0;
  }

  .rbt-inner {
    padding: 32px 18px;
  }

  .rbt-content h2 {
    font-size: 22px;
  }
}





.rbt-map-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #ffffff;
  overflow: hidden;
}

.rbt-map-wrap {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
}

.rbt-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(100%) sepia(12%) saturate(70%) hue-rotate(220deg) brightness(96%) contrast(88%);
}

.rbt-map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(169, 159, 175, 0.18);
  pointer-events: none;
  z-index: 1;
}

.rbt-map-logo-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -100%);
  z-index: 3;
  pointer-events: none;
}

.rbt-map-logo-marker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

@media (max-width: 1024px) {
  .rbt-map-wrap {
    height: 440px;
  }

  .rbt-map-logo-marker {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 767px) {
  .rbt-map-wrap {
    height: 360px;
  }

  .rbt-map-logo-marker {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .rbt-map-wrap {
    height: 320px;
  }

  .rbt-map-logo-marker {
    width: 50px;
    height: 50px;
  }
}






.rbt-text-image-section {
  width: 100%;
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
}

.rbt-text-image-wrap {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 70px;
  display: flex;
  align-items: center;
  gap: 90px;
}

.rbt-text-image-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rbt-text-image-content h2 {
  margin: 0 0 35px;
  color: #6f6475;
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
}

.rbt-text-image-content p {
  max-width: 540px;
  margin: 0 0 22px;
  color: #6f6870;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
}

.rbt-text-image-content p:last-child {
  margin-bottom: 0;
}

.rbt-text-image-photo {
  width: 55%;
  height: 560px;
  display: flex;
  overflow: hidden;
}

.rbt-text-image-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1200px) {
  .rbt-text-image-wrap {
    padding: 0 45px;
    gap: 55px;
  }

  .rbt-text-image-content h2 {
    font-size: 34px;
  }

  .rbt-text-image-photo {
    height: 500px;
  }
}

@media (max-width: 900px) {
  .rbt-text-image-section {
    padding: 60px 0;
  }

  .rbt-text-image-wrap {
    padding: 0 25px;
    flex-direction: column;
    gap: 35px;
  }

  .rbt-text-image-content,
  .rbt-text-image-photo {
    width: 100%;
  }

  .rbt-text-image-content {
    align-items: center;
    text-align: center;
  }

  .rbt-text-image-content p {
    max-width: 680px;
  }

  .rbt-text-image-photo {
    height: 430px;
  }
}

@media (max-width: 600px) {
  .rbt-text-image-section {
    padding: 45px 0;
  }

  .rbt-text-image-wrap {
    padding: 0 18px;
  }

  .rbt-text-image-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .rbt-text-image-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .rbt-text-image-photo {
    height: 320px;
  }
}







.rbt-adjustments-section {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.rbt-adjustments-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.rbt-adjustments-image,
.rbt-adjustments-content {
  width: 50%;
  min-height: 520px;
}

.rbt-adjustments-image {
  display: flex;
  overflow: hidden;
}

.rbt-adjustments-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.rbt-adjustments-content {
  background: #a99faf;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rbt-adjustments-inner {
  width: 100%;
  max-width: 520px;
  padding: 70px 40px;
}

.rbt-adjustments-content h2 {
  margin: 0 0 50px;
  color: #eee9ef;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 400;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
}

.rbt-adjustments-content p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.2px;
}

.rbt-adjustments-content-left {
  justify-content: flex-start;
}

.rbt-adjustments-content-left .rbt-adjustments-inner {
  max-width: 560px;
  padding-left: 14%;
}

.rbt-adjustments-content-left h2 {
  text-align: left;
  margin-bottom: 42px;
}

.rbt-adjustments-content-left p {
  text-align: left;
  line-height: 1.45;
}

.rbt-adjustments-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.rbt-adjustments-list strong {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .rbt-adjustments-image,
  .rbt-adjustments-content {
    min-height: 470px;
  }

  .rbt-adjustments-content h2 {
    font-size: 30px;
    margin-bottom: 38px;
  }

  .rbt-adjustments-content p {
    font-size: 15px;
  }

  .rbt-adjustments-content-left .rbt-adjustments-inner {
    padding-left: 9%;
  }
}

@media (max-width: 900px) {
  .rbt-adjustments-image,
  .rbt-adjustments-content {
    width: 100%;
    min-height: auto;
  }

  .rbt-adjustments-image {
    height: 420px;
  }

  .rbt-adjustments-content {
    min-height: auto;
  }

  .rbt-adjustments-inner,
  .rbt-adjustments-content-left .rbt-adjustments-inner {
    max-width: 620px;
    padding: 55px 30px;
    margin: 0 auto;
  }

  .rbt-adjustments-content h2,
  .rbt-adjustments-content-left h2 {
    text-align: center;
  }

  .rbt-adjustments-content-left p {
    text-align: center;
  }

  .rbt-adjustments-grid .rbt-adjustments-content-left {
    order: 4;
  }

  .rbt-adjustments-grid .rbt-adjustments-image:nth-child(4) {
    order: 3;
  }
}

@media (max-width: 600px) {
  .rbt-adjustments-image {
    height: 300px;
  }

  .rbt-adjustments-inner,
  .rbt-adjustments-content-left .rbt-adjustments-inner {
    padding: 42px 22px;
  }

  .rbt-adjustments-content h2 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 30px;
  }

  .rbt-adjustments-content p {
    font-size: 14px;
    line-height: 1.55;
  }

  .rbt-adjustments-list {
    gap: 22px;
  }
}

@media (max-width: 420px) {
  .rbt-adjustments-image {
    height: 260px;
  }

  .rbt-adjustments-inner,
  .rbt-adjustments-content-left .rbt-adjustments-inner {
    padding: 36px 18px;
  }

  .rbt-adjustments-content h2 {
    font-size: 24px;
  }
}






.faq-service{
  padding: 50px;
}
.rbt-faq-section {
  width: 100%;
  background: #a99faf;
  padding: 110px 20px 95px;
  overflow: hidden;
}

.rbt-faq-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.rbt-faq-container h2 {
  margin: 0 0 55px;
  color: #eee9ef;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 400;
  font-family: Georgia, "Times New Roman", serif;
}

.rbt-faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.rbt-faq-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 95px;
}

.rbt-faq-question {
  width: 290px;
  flex-shrink: 0;
  color: #f2eef2;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
}

.rbt-faq-answer {
  max-width: 760px;
  color: #f7f3f7;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.2px;
}



@media (max-width: 1024px) {
  .rbt-faq-section {
    padding: 80px 30px;
  }

  .rbt-faq-container {
    max-width: 820px;
  }

  .rbt-faq-item {
    gap: 55px;
  }

  .rbt-faq-question {
    width: 260px;
    font-size: 19px;
  }

  .rbt-faq-answer {
    font-size: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 767px) {
  .rbt-faq-section {
    padding: 60px 22px;
  }

  .rbt-faq-container h2 {
    font-size: 34px;
    margin-bottom: 42px;
    text-align: left;
  }

  .rbt-faq-list {
    gap: 38px;
  }

  .rbt-faq-item {
    flex-direction: column;
    gap: 14px;
  }

  .rbt-faq-question {
    width: 100%;
    font-size: 20px;
  }

  .rbt-faq-question br {
    display: none;
  }

  .rbt-faq-answer {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 600px) {
  .faq-service{
    padding: 20px;
  }
  .rbt-faq-section {
    padding: 50px 18px;
  }

  .rbt-faq-container h2 {
    font-size: 30px;
  }

  .rbt-faq-list {
    gap: 32px;
  }

  .rbt-faq-question {
    font-size: 18px;
  }

  .rbt-faq-answer {
    font-size: 14px;
  }
}