body {
    margin: 0;
    padding: 0;
    font-family: 'Days One', Arial, sans-serif;
    background: #f9f9f9;
}
*, *::before, *::after {
    box-sizing: inherit;
}
html {
    box-sizing: border-box;
    scroll-padding-top: 75px;
}
.main-header {
    background-color: #fff;
    color: #333;
    width: 100%;
    position: fixed;
    top: 0; left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.35s cubic-bezier(.4,1,.6,1);
}
.header--hidden { transform: translateY(-100%); }
.header-content {
    width: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    box-sizing: border-box;
}
.site-logo {
    display: flex;
    align-items: center;
    margin-left: 0;
    text-decoration: none;
}
.site-logo img {
    height: 60px;
    width: auto;
    display: block;
}
.main-nav .nav-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: 25px;
}
.main-nav .nav-link {
    color: #1730EF;
    text-decoration: none;
    font-size: 1.1em;
    font-family: inherit;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
    transition: color 0.25s cubic-bezier(.4,1,.6,1);
    overflow: hidden;
    background: none;
}
.main-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%;
    height: 3px;
    background: #1730ef;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.32s cubic-bezier(.4,1,.6,1);
    border-radius: 2px;
}
.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
    color: #0f1f9b;
    background: none;
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link:focus::after,
.main-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}
.main-nav .nav-link.active {
    color: #181818;
    background: none;
}
.site-footer {
    background: #dddddd;
    width: 100vw;
    min-height: 120px;
    padding: 18px 0 6px 0;
    font-family: 'Days One', Arial, sans-serif;
    box-sizing: border-box;
    position: relative;
    left: 0;
    bottom: 0;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 16px;
}
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.footer-title {
    font-size: 1.6vw;
    font-weight: 600;
    margin-bottom: 4px;
}
.footer-tg-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1vw;
    font-weight: 500;
}
.footer-tg-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.1vw;
    font-weight: 500;
}
.footer-tg-link:visited,
.footer-tg-link:active,
.footer-tg-link:focus,
.footer-tg-link:hover {
    color: inherit;
    text-decoration: none;
    outline: none;
}
.tg-icon-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 6px;
    border-radius: 50%;
    box-shadow: 0 1px 6px rgba(23,48,239,0.08);
    overflow: hidden;
}
.footer-tg-icon {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}
.footer-tg-nick {
    font-size: 1.1vw;
    font-weight: 500;
}
.footer-phone-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1vw;
    font-weight: 500;
}
.footer-phone-icon {
    width: 28px; height: 28px;
}
.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.footer-phones a {
    text-decoration: none;
    color: inherit;
}
.footer-copyright {
    text-align: right;
    color: #222;
    font-size: 0.9vw;
    padding: 0 24px 2px 24px;
}
.xfix-blue {
    color: #1730ef;
    font-weight: bold;
}
.footer-right {
    text-align: right;
    font-size: 1vw;
    font-weight: 500;
    color: #181818;
    line-height: 1.4;
}
.footer-right a {
    text-decoration: none;
    color: inherit;
}
.xfix-logo, .xfix-footer-logo {
    color: #000000;
    font-family: inherit;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.xfix-f, .xfix-footer-f { color: #1730ef; }
@media (max-width: 900px) {
    .header-content { padding: 0 20px; height: 60px; }
    .site-logo img { height: 32px; }
    .footer-main { flex-direction: column; align-items: flex-start; gap: 12px; min-height: unset; }
    .footer-right { text-align: left; font-size: 2vw; margin-top: 8px;}
    @media (max-width: 600px) {
  .footer-right-phones {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    margin-top: 4px;
    flex-wrap: wrap;
  }
  .footer-right-phones a {
    white-space: nowrap;
    font-size: 1.1em;
  }
}
    .footer-title { font-size: 3vw; }
    .footer-tg-row, .footer-tg-nick { font-size: 4vw; }
    .footer-phone-row { font-size: 1.3vw; }
    .footer-copyright { font-size: 1.2vw; text-align: left; padding: 0 10px 2px 10px; }
    .tg-icon-minimal { width: 44px; height: 44px; }
    .footer-tg-icon { width: 16px; height: 16px; }
}
@media (max-width: 600px) {
    .header-content { flex-direction: row; align-items: center; justify-content: space-between; height: 60px; padding: 0 10px; gap: 0; }
    .main-nav .nav-list { flex-direction: column; gap: 10px; width: 100%; }
    .site-logo { margin-bottom: 6px; }
    .footer-main { padding: 0 4px; flex-direction: column !important; align-items: center; gap: 16px; background: #f8f8f8; border-top: 1px solid #e0e0e0; }
    .footer-left,
    .footer-right {
        width: 100%;
        max-width: 95vw;
        font-size: 4vw;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 8px 0;
        border-bottom: 1px solid #e0e0e0;
    }
    .footer-right {
        border-bottom: none;
    }
    .footer-title {
        font-size: 4vw;
        font-weight: bold;
        margin-bottom: 4px;
        color: #222;
    }
    .footer-tg-row,
    .footer-phone-row {
        font-size: 3.8vw;
        margin: 2px 0;
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
    }
    .footer-tg-row img, .footer-phone-row img {
        width: 18px;
        height: 18px;
    }
    .footer-copyright {
        width: 100%;
        background: #f8f8f8;
        color: #222;
        font-size: 3vw;
        text-align: center;
        padding: 8px 0 8px 0;
        border-top: 1px solid #e0e0e0;
        margin: 0;
    }
    .footer-tg-icon, .footer-phone-icon { width: 14px; height: 14px; }
    .tg-icon-minimal { width: 18px; height: 18px; }
}
.hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-bg2 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
}
.hero__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.hero__title, .hero__subtitle {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
}
.hero__title.animate-in {
    animation: heroTextFadeIn 0.8s 0.1s cubic-bezier(.4,1,.6,1) forwards;
}
.hero__subtitle.animate-in {
    animation: heroTextFadeIn 0.8s 0.45s cubic-bezier(.4,1,.6,1) forwards;
}
@keyframes heroTextFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.hero__title {
    font-size: 4vw;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.1;
}
.hero__subtitle {
    font-size: 1.3em;
    margin-bottom: 16px;
    font-weight: 500;
}
.hero__button {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.4em;
    font-weight: bold;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 28px;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: heroBtnFadeIn 0.7s 1s cubic-bezier(.4,1,.6,1) forwards;
    box-shadow: 0 3px 24px 0 rgba(23,48,239,0.13);
}
.hero__button:hover, .hero__button:focus {
    background: rgba(23, 48, 239, 0.25);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 6px 24px 0 rgba(23,48,239,0.15);
}
@keyframes heroBtnFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@media (max-width: 900px) {
    .hero__title { font-size: 6vw; }
}
@media (max-width: 600px) {
    .hero__title { font-size: 8vw; }
    .hero__button {
        padding: 12px 22px;
        font-size: 1.1em;
    }
}
.reviews-section {
    position: relative;
    padding: 80px 0 40px 0;
    background: #2a2522;
    overflow: hidden;
}
.why-choose-us {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}
.why-title,
.reviews-window__underline {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    color:#fff; 
}
.why-title.animate-in {
    animation: whyFadeIn 1s cubic-bezier(.4,1,.6,1) forwards;
}
@keyframes whyFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.reviews-window__underline {
    width: 100%;
    max-width: 900px;
    height: 4px;
    background: #1730EF;
    border-radius: 32px 32px 0 0;
    margin: 0 auto 24px auto;
    opacity: 0;
    transform: scaleX(0.3);
    transform-origin: center;
}
.reviews-window__underline.animate-in {
    animation: underlineAppear .8s cubic-bezier(.4,1,.6,1) forwards;
}
@keyframes underlineAppear {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}
.reviews-window {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    background: #181617;
    border-radius: 32px;
    box-shadow: 0 6px 36px rgba(0,0,0,0.20);
    padding: 36px 20px 30px 20px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.reviews-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.elfsight-app-5e8a8504-5d3a-440e-a276-1bbf2f4cd17b {
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 1000px) {
    .reviews-window,
    .reviews-window__underline {
        max-width: 98vw;
    }
}
@media (max-width: 900px) {
    .why-title { font-size: 5vw; }
    .reviews-section { padding-top: 60px; }
    .reviews-window,
    .reviews-window__underline {
        max-width: 99vw;
    }
    .reviews-window { padding: 28px 12px 18px 12px; }
}
@media (max-width: 600px) {
    .why-title { font-size: 7vw; }
    .reviews-section { padding-top: 40px; }
    .reviews-window,
    .reviews-window__underline {
        max-width: 100vw;
    }
    .reviews-window { border-radius: 14px; padding: 18px 5px 12px 5px; }
}
.what-we-do-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px 0 60px 0;
}
.what-we-do-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('img/fon2.avif') center/cover no-repeat;
    filter: blur(2px) brightness(0.92);
    will-change: filter, opacity;
}
.what-we-do-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.what-we-do-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.what-we-do-title {
    font-family: 'Days One', Arial, sans-serif;
    font-size: 3.2vw;
    font-weight: 800;
    color: #1730ef;
    margin: 0 0 12px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s;
}
.what-we-do-underline {
    width: 96%;
    max-width: 1200px;
    height: 3px;
    background: #1730ef;
    margin-bottom: 34px;
    opacity: 0;
    transform: scaleX(0.3);
    transform-origin: center;
    transition: opacity 0.7s, transform 0.7s;
}
.what-we-do-columns {
    width: 100%;
    display: flex;
    gap: 4vw;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.what-we-do-col {
    flex: 1 1 320px;
    max-width: 480px;
    background: rgba(220,220,220,0.32);
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 20px;
    box-shadow: 0 4px 24px rgba(23,48,239,0.06);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s;
}
.what-we-do-col-title {
    font-size: 2vw;
    font-weight: 800;
    color: #1730ef;
    margin-bottom: 12px;
    font-family: 'Days One', Arial, sans-serif;
}
.what-we-do-col ul {
    padding-left: 20px;
    margin: 0;
}
.what-we-do-col li {
    font-size: 1.2em;
    font-family: inherit;
    margin-bottom: 7px;
    color: #181617;
    font-weight: bold;
}
.what-we-do-title.animated,
.what-we-do-underline.animated,
.what-we-do-col.animated {
    opacity: 1;
    transform: translateY(0) scaleX(1);
}
.what-we-do-underline.animated { transition-delay: 0.2s; }
.what-we-do-col.animated { transition-delay: 0.3s; }
@media (max-width: 900px) {
    .what-we-do-title { font-size: 5vw; }
    .what-we-do-col-title { font-size: 3vw; }
    .what-we-do-content { padding: 20px 6px 0 6px; }
    .what-we-do-col { padding: 18px 8px; }
}
@media (max-width: 600px) {
    .what-we-do-title { font-size: 7vw; }
    .what-we-do-col-title { font-size: 5vw; }
    .what-we-do-columns { flex-direction: column; gap: 18px; }
}
.how-it-works-section {
    position: relative;
    background: #e9e9ea;
    padding: 50px 0 0 0;
    overflow: hidden;
}
.how-it-works-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-it-works-title {
    font-family: 'Days One', Arial, sans-serif;
    font-size: 3.2vw;
    font-weight: 800;
    color: #1730ef;
    margin: 0 0 12px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s;
}
.how-it-works-underline {
    width: 96%;
    max-width: 1200px;
    height: 2.5px;
    background: #1730ef;
    margin-bottom: 38px;
    opacity: 0;
    transform: scaleX(0.3);
    transform-origin: center;
    transition: opacity 0.7s, transform 0.7s;
}
.how-it-works-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.how-it-works-step {
    width: 100%;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.how-it-works-step-text {
    flex: 1 1 420px;
    background: rgba(255,255,255,0.94);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(23,48,239,0.06);
    padding: 32px 28px;
    font-size: 1.2vw;
    font-weight: 400;
    color: #161616;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s, transform 0.7s;
}
.how-it-works-list {
    margin: 0;
    padding-left: 24px;
    font-size: 1.1em;
    font-weight: 400;
    color: #181818;
    list-style: decimal inside;
}
.how-it-works-list li {
    margin-bottom: 18px;
    line-height: 1.45;
    font-family: 'Days One', Arial, sans-serif;
    font-weight: 400;
}
.how-it-works-list li:last-child {
    margin-bottom: 0;
}
.how-it-works-images {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    margin-top: 8px;
    flex-wrap: wrap;
}
.how-it-works-images img {
    width: 180px;
    min-width: 150px;
    max-width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    background: #fff;
    margin-bottom: 0;
    margin-top: 0;
}
.how-it-works-bottom {
    width: 100%;
    text-align: center;
    font-size: 2.5vw;
    font-weight: 800;
    color: #000000;
    margin: 38px 0 18px 0;
    padding: 12px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s;
    border-bottom: 2px solid #1730ef;
}
.xfix-blue { color: #1730ef; }
.how-it-works-title.animated,
.how-it-works-underline.animated,
.how-it-works-step-text.animated,
.how-it-works-images img.animated,
.how-it-works-bottom.animated {
    opacity: 1;
    transform: none;
}
.how-it-works-title.animated { transition-delay: 0.1s;}
.how-it-works-underline.animated { transition-delay: 0.2s;}
.how-it-works-step-text.animated { transition-delay: 0.3s;}
.how-it-works-images img.animated { transition-delay: 0.35s;}
.how-it-works-bottom.animated { transition-delay: 0.5s;}
@media (max-width: 1100px) {
    .how-it-works-step { flex-direction: column; gap: 24px;}
    .how-it-works-step-text { font-size: 2.4vw;}
    .how-it-works-bottom { font-size: 3vw;}
}
@media (max-width: 700px) {
    .how-it-works-content { padding: 0 6px;}
    .how-it-works-title { font-size: 7vw;}
    .how-it-works-underline { margin-bottom: 18px;}
    .how-it-works-images img { width: 100px; min-width: 60px;}
    .how-it-works-step-text { font-size: 3.8vw; padding: 16px 7px;}
    .how-it-works-bottom { font-size: 4.5vw;}
}
@keyframes heroTextFadeIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroBtnFadeIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes whyFadeIn {
    to { opacity: 1; transform: translateY(0) scale(1);}
}
@keyframes underlineAppear {
    to { opacity: 1; transform: scaleX(1);}
}
.tg-widget {
  position: fixed;
  left: 32px;
  bottom: 32px;
  z-index: 9999;
}
.floating-img-btn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 99999;
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  border: 3px solid #1730ef;
  overflow: hidden;
  animation: pulse-glow 1.6s infinite;
  transition: box-shadow 0.2s, transform 0.2s;
}
.floating-img-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  display: block;
}
@keyframes pulse-glow {
  0% {
    box-shadow:
      0 0 0 0 hsla(233, 86%, 52%, 0.36),
      0 0 24px 0 hsla(233, 86%, 52%, 0.55);
    border-color: #1730ef;
  }
  60% {
    box-shadow:
      0 0 0 16px hsla(233, 86%, 52%, 0),
      0 0 48px 8px hsla(233, 86%, 52%, 0.22);
    border-color: #426cff;
  }
  100% {
    box-shadow:
      0 0 0 0 hsla(233, 86%, 52%, 0.36),
      0 0 24px 0 hsla(233, 86%, 52%, 0.55);
    border-color: #1730ef;
  }
}
.floating-img-btn:hover, .floating-img-btn:focus {
  transform: scale(1.08);
  box-shadow:
    0 0 0 8px hsla(233, 86%, 52%, 0.12),
    0 0 32px 0 hsla(233, 86%, 52%, 0.32);
  border-color: #426cff;
}
@media (max-width: 600px) {
  .why-title {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .what-we-do-columns {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .what-we-do-col {
    align-self: center;
    width: 90vw;
    max-width: 500px;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
  .what-we-do-col-title {
    text-align: center;
  }
  .what-we-do-col ul {
    text-align: left;
    padding-left: 1.5em;
    margin: 1em 0;
    list-style-position: outside;
  }
  .what-we-do-col li {
    text-align: left;
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 7px;
  }
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1101;
  padding: 0;
  margin-left: auto;
  position: relative;
}
.burger span {
  display: block;
  width: 28px;
  height: 4px;
  background: #1730ef;
  border-radius: 2px;
  margin: 4px 0;
  transition: 0.35s cubic-bezier(.4,1,.6,1);
  position: relative;
}
.burger.active span:nth-child(1),
.burger.active span:nth-child(3) {
  position: absolute;
  top: 17px;
  left: 5px;
  width: 28px;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
}
@media (max-width: 700px) {
  .burger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 68vw;
    max-width: 290px;
    background: #fff;
    box-shadow: -2px 0 12px rgba(23,48,239,0.09);
    transform: translateX(100%);
    transition: transform 0.33s cubic-bezier(.4,1,.6,1);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 18px 18px 28px;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav .nav-list {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (max-width: 700px) {
  .how-it-works-images {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    justify-items: center !important;
    align-items: center !important;
    margin: 0 auto 12px auto !important;
    width: 100% !important;
    max-width: 430px !important;
    padding: 0 !important;
    height: auto !important;
    max-height: none !important;
  }
  .how-it-works-images img {
    width: 44vw !important;
    max-width: 180px !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
    margin: 0 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    background: #fff;
    display: block !important;
  }
}