/* Variables — Texas theme (Blue #002868 · Red #BF0A30 · Gold #C8922A) */
:root {
  --violet-color: #1B56B5;        /* Texas Blue — кнопки, ссылки, акценты */
  --violet-accent-color: #154499; /* тёмнее при hover */
  --violet-light-color: #E4EDF8;  /* светло-синий фон hero */
  --violet-dark-color: #0D2451;   /* Deep Texas Navy — футер */
  --red-color: #BF0A30;           /* официальный Texas Red */
  --green-color: #C8922A;         /* Texas Gold — второстепенный акцент */
  --text-color: #4A4A4A;
  --black-color: #1C1C2E;
  --white-color: #fff;
  --grey-color: #9E9E9E;
  --grey-bg-color: #F0F4FA;
  --grey-medium-color: #D8DCE6;
  --grey-light-color: #F5F7FC;

  --primary-font: open-sans;

  --transition: all .3s ease-in-out;
}

/* Grid */
:root {
  --grid-width: 1160px;
  --grid-gutter: 15px;
}

.c5ief2 {
  max-width: calc(var(--grid-width) + var(--grid-gutter) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
}

.c5ief2.sm {
  max-width: calc(962px + var(--grid-gutter) * 2);
}

.hwuyrh {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--grid-gutter) * -1);
}

.jsov8l {
  flex-direction: column-reverse;
}

.cdzq8w {
  flex-direction: column-reverse;
}

.x734zs {
  width: fit-content;
  padding: 0 var(--grid-gutter);
}

.xrc8u0 {
  width: 25%;
}

.w2ox04 {
  width: 33.3333%;
}

.ys50lr {
  width: 41.666667%;
}

.qneaob {
  width: 50%;
}

.l69wx7 {
  width: 100%;
}

.lv469w {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ev581f {
  flex: 1;
}

.wo67hv {
  justify-content: flex-start;
}

.y4kluz {
  justify-content: flex-end;
}

@media (min-width: 992px) {
  .bsglw0 {
    width: 25%;
  }

  .reds09 {
    width: 58.3333%;
  }

  .x5c3uf {
    width: 50%;
  }

  .z8dzd3 {
    width: 41.6666%;
  }

  .vvn343 {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .xxcmtm {
    width: 50%;
  }

  .wwzaot {
    width: 58.3333%;
  }

  .f2407g {
    width: 41.6666%;
  }

  .d0z8dy {
    justify-content: flex-start;
  }

  .und69q {
    justify-content: flex-end;
  }

  .l60cyx {
    flex-direction: row;
  }
}

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

*:before,
*:after {
  box-sizing: border-box;
}

body, html {
  height: 100%;
  min-height: 100%;
}

html {
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  line-height: 1;
  background-color: var(--white-color);
  color: var(--text-color);
  font-family: var(--primary-font), sans-serif;
  font-size: 18px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  font-family: var(--primary-font), sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 42px;
  line-height: 57px;
  margin: 60px 0 30px;
}

h2 {
  font-size: 40px;
  line-height: 54px;
  margin: 60px 0 30px;
}

h3 {
  font-size: 38px;
  line-height: 52px;
  margin: 60px 0 30px;
}

h4 {
  font-size: 36px;
  line-height: 50px;
  margin: 60px 0 30px;
}

h5 {
  font-size: 32px;
  line-height: 43px;
  margin: 60px 0 30px;
}

h6 {
  font-size: 28px;
  line-height: 38px;
  margin: 60px 0 30px;
}

ul {
  list-style-type: none;
  margin: 20px 0;
  padding: 0;
}

ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-color);
}

ul li::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--black-color);
}

ol {
  margin: 20px 0 20px 22px;
}

ol li {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 30px;
}

blockquote {
  position: relative;
  display: block;
  background-color: var(--grey-light-color);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  padding: 16px 78px 16px 80px;
  margin: 15px 0;
}

blockquote::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 58px;
  height: calc(100% - 10px);
  width: 2px;
  background-color: var(--grey-medium-color);
}

kbd {
  letter-spacing: .05em;
  font-family: var(--primary-font);
  font-weight: 400;
}

code,
samp {
  display: inline-block;
  padding: 0 2px;
  font-family: inconsolata;
  font-weight: 400;
  background-color: var(--grey-light-color);
  font-size: 18px;
  line-height: 30px;
  letter-spacing: .05em;
}

p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-color);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

a {
  color: var(--violet-color);
  line-height: 1;
  outline: none;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}

input, 
select,
textarea {
  width: 100%;
  position: relative;
  display: block;
  padding: 11px 14px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 24px;
  font-family: var(--primary-font), sans-serif;
  font-weight: 400;
  background-color: var(--white-color);
  outline: none;
  border-radius: 5px;
  border: 1px solid var(--grey-medium-color);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

textarea {
  resize: none;
}

select {
  padding-right: 50px;
  background: url(../images/select-arrow.svg) no-repeat calc(100% - 15px) var(--white-color);
}

::-webkit-input-placeholder {
  color: var(--grey-color);
  opacity: 1;
}
::-moz-placeholder {
  color: var(--grey-color);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--grey-color);
  opacity: 1;
}
:-moz-placeholder {
  color: var(--grey-color);
  opacity: 1;
}

input:active,
input:focus,
textarea:active,
textarea:focus {
  border: 1px solid var(--violet-light-color);
}

.e5ypbp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 34px;
  background-color: var(--violet-color);
  color: var(--white-color);
  outline: none;
  font-family: var(--primary-font), sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  border-radius: 10px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: var(--transition);
}

.e5ypbp:hover,
.e5ypbp:active {
  background-color: var(--violet-accent-color);
  text-decoration: none;
}

.uvm58d {
  position: relative;
  z-index: 1;
  padding: 11px 0;
  box-shadow: 0 1px 4px 0 rgba(132, 133, 204, .25);
  background-color: var(--white-color);
}

.u26i1k {
  max-width: 130px;
  width: 100%;
  transition: var(--transition);
  border: 0;
}

.u26i1k:hover {
  opacity: .9;
}

.beu7d8 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  transition: var(--transition);
}

.ktlf8o {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, .5);
}

.beu7d8.is-active {
  transform: translateX(0);
}

.ktlf8o.is-active {
  opacity: 1;
  z-index: 9;
}

.e2vkql {
  width: 100%;
  margin-right: 30px;
}

.e2vkql ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.e2vkql ul li {
  margin: 0 40px 0 0;
  padding: 0;
}

.e2vkql ul li::before {
  display: none;
}

.e2vkql ul li:last-child {
  margin-right: 0;
}

.e2vkql ul li * {
  display: inline-flex;
  color: var(--black-color);
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

.e2vkql ul li a:hover {
  color: var(--violet-color);
  border-color: var(--violet-color);
}

.h8zth3 {
  flex-shrink: 0;
}

.h8zth3 .e5ypbp {
  padding-left: 42px;
  padding-right: 42px;
}

.vyihxx {
  position: relative;
  background-color: var(--violet-light-color);
  padding: 60px 0 45px;
}

.i5axh4 {
  font-size: 18px;
  line-height: 30px;
}

.su5dxe {
  margin: 30px 0 20px 0;
  font-size: 42px;
  line-height: 57px;
  font-weight: 600;
  color: var(--black-color);
}

.m2sa59 {
  padding: 60px 0 20px;
}

.m2sa59 p,
.m2sa59 li {
  text-align: justify;
}

.tkmu1y {
  padding: 50px 0 10px;
  background-color: var(--grey-bg-color);
}

.i1i603 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 30px -15px 0;
}

.xr5oeu,
.okk8ko {
  width: calc(50% - 30px);
  margin: 0 15px;
}

.i1i603.gcxrou .ii06do {
  border-color: var(--violet-color);
}

.i1i603.eppsf5 .ii06do {
  border-color: var(--green-color);
}

.ii06do {
  position: relative;
  background-color: var(--white-color);
  padding: 20px;
  margin-bottom: 30px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border: 1px solid var(--violet-color);
  width: 100%;
  max-width: 367px;
}

.ii06do p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 27px;
}

.xr5oeu .ii06do:first-child::before,
.xr5oeu .ii06do:last-child::before,
.okk8ko .ii06do:first-child::before {
  content: '';
  position: absolute;
  width: 62px;
  height: 58px;
}

.xr5oeu .ii06do:first-child::before {
  top: calc(100% + 15px);
  left: 120px;
  background: url(../images/arrow-1.svg) no-repeat center;
}

.xr5oeu .ii06do:last-child::before {
  bottom: calc(100% + 15px);
  right: 0;
  background: url(../images/arrow-2.svg) no-repeat center;
}

.okk8ko .ii06do:first-child::before {
  top: calc(100% + 15px);
  left: 120px;
  background: url(../images/arrow-1.svg) no-repeat center;
}

.i1i603.eppsf5 .xr5oeu .ii06do:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.i1i603.eppsf5 .xr5oeu .ii06do:last-child::before {
  background-image: url(../images/arrow-4.svg);
}

.i1i603.eppsf5 .okk8ko .ii06do:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.xr5oeu .ii06do:last-child,
.okk8ko .ii06do:last-child { 
  margin-left: auto;
}

.gzql51 {
  padding: 30px 0;
  background-color: var(--grey-bg-color);
}

.h75gfc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.b3uxd6 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: calc(50% - 15px);
}

.m10x7s {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

.uzjtiv {
  flex: 1;
}

.wr19q3 {
  padding: 70px 0 90px;
}

.cpfxrw {
  padding: 30px;
  width: 100%;
  max-width: 415px;
  background-color: var(--white-color);
  text-align: center;
  margin-left: auto;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.lyqif2 {
  max-width: 335px;
  width: 100%;
  margin: 0 auto;
}

.cpfxrw select {
  margin-bottom: 15px;
}

.rsp73c {
  margin: 0 auto 25px;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: var(--black-color);
  max-width: 335px;
}

.thoqk4 {
  margin-top: 20px;
}

.ago2hh {
  font-size: 12px;
  line-height: 15px;
  margin: 15px auto 0;
  width: 100%;
  max-width: 335px;
  text-align: center;
  font-weight: 300;
  color: var(--text-color);
}

.ago2hh a {
  font-weight: 400;
  color: var(--text-color);
}

.xe28rd {
  margin: 20px 0;
}

.xe28rd li {
  padding-left: 43px;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 16px;
}

.xe28rd li::before {
  width: 28px;
  height: 28px;
  left: 0;
  top: 1px; 
  border-radius: 5px;
  background: url(../images/check-icon.svg) no-repeat center var(--green-color);
}

.ac948m {
  margin: 0 0 30px;
  font-size: 40px;
  color: var(--black-color);
  line-height: 54px;
  font-weight: 600;
}


.dj5q8s {
  padding-top: 70px;
  background-color: var(--violet-dark-color);
}

.gde6q2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}

.ytxudf {
  margin: 0 15px;
}

.vmhubh {
  max-width: 147px;
  width: 100%;
}

.vmhubh:hover {
  opacity: .9;
}

.cy48ol {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 20px 0;
}

.cy48ol li {
  margin: 0 20px 0 0;
  padding: 0;
}

.cy48ol li:last-child {
  margin-right: 0;
}

.cy48ol li::before {
  display: none;
}

.cy48ol li a {
  width: 36px;
  height: 36px;
  padding: 4px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border: 0;
}

.cy48ol li a:hover {
  opacity: .8;
}

.pxpud9 {
  display: flex;
  align-items: flex-start;
  width: 158px;
}

.pxpud9 p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 0;
  color: var(--white-color);
}

.yd9406 {
  margin-right: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.bvrupc {
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--grey-medium-color);
}

.kqomb3 {
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 19px;
  font-weight: 600;
  color: var(--white-color);
}

.mst4ag {
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.mst4ag li {
  margin: 0 0 15px 0;
  padding: 0 15px 0 0;
  line-height: 19px;
  width: 25%;
}

.mst4ag li::before {
  display: none;
}

.mst4ag li a {
  display: inline-block;
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
  color: var(--white-color);
}

.iy2h7u {
  margin-top: 50px;
}

.igkh0w {
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  text-align: justify;
}

.igkh0w p {
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  margin-bottom: 0;
  color: var(--white-color);
}

.qdzblv {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 15px;
  font-weight: 400;
  text-align: left;
  color: var(--white-color);
}

.juaeer {
  text-align: center;
  padding-top: 24px;
}

.juaeer p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 16px;
  color: var(--white-color);
}

.arzpmx {
  position: relative;
  display: none;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  z-index: 100;
  overflow: visible; }
  .arzpmx:hover {
    opacity: 0.7; }
  .arzpmx.is-active:hover {
    opacity: 0.7; }
  .arzpmx.is-active .qbfdnw,
  .arzpmx.is-active .qbfdnw::before,
  .arzpmx.is-active .qbfdnw::after {
    background-color: var(--violet-accent-color); }

.a7x2gy {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.qbfdnw {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .qbfdnw, .qbfdnw::before, .qbfdnw::after {
    width: 40px;
    height: 3px;
    background-color: var(--violet-accent-color);
    border-radius: 3px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .qbfdnw::before, .qbfdnw::after {
    content: "";
    display: block; }
  .qbfdnw::before {
    top: -10px; }
  .qbfdnw::after {
    bottom: -10px; }

.chcl6a .qbfdnw {
  top: 2px; }
  .chcl6a .qbfdnw::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .chcl6a .qbfdnw::after {
    top: 20px; }

.chcl6a.is-active .qbfdnw {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .chcl6a.is-active .qbfdnw::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .chcl6a.is-active .qbfdnw::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

.eqzklt {
  margin-top: 60px!important;
}

.shtsoc {
  display: flex;
}

.wwjlsz {
  text-align: center;
}

.d26hso {
  align-items: center;
} 

.o2omip {
  justify-content: space-between;
}

.uagi39 {
  justify-content: center;
}

.z2esxk {
  justify-content: flex-start;
}

/* Media queries */
@media (max-width: 1199px) {
  
  
  
  
  

  .xr5oeu .ii06do:first-child::before,
  .okk8ko .ii06do:first-child::before {
    left: 50px;
  }

  
}

@media (max-width: 1025px) {
  .e2vkql ul li {
    margin-right: 25px;
    border-bottom: 1px solid var(--milk-color);
  }

  .xr5oeu .ii06do:first-child::before,
  .okk8ko .ii06do:first-child::before {
    left: 0;
  }

  .arzpmx {
    display: inline-flex;
  }

  .uvm58d {
    height: 90px;
  }

  .beu7d8 {
    padding: 30px;
    position: fixed;
    top: 91px;
    right: 0;
    bottom: 0;
    height: calc(100% - 91px);
    width: 100%;
    z-index: 99;
    background-color: var(--white-color);
    transform: translateX(100%);
  }

  .e2vkql {
    margin-right: 0;
    width: auto;
    text-align: right;
    width: 100%;
  }

  .e2vkql ul {
    display: block;
  }

  .e2vkql ul li {
    margin-right: 0;
    margin-bottom: 15px; 
    padding-bottom: 10px;
  }

  .e2vkql ul li * {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }

  .h8zth3 {
    display: none;
  }

  .h8zth3 .e5ypbp {
    width: 180px;
  }

  .e5ypbp {
    font-size: 20px;
    padding: 10px 20px;
  }

  .wvt9bh {
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  .dj5q8s {
    padding-top: 60px;
  }

  .gde6q2 {
    margin-bottom: 30px;
  }

  .mr6fwa {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .vmhubh {
    margin-bottom: 0;
    justify-content: flex-start;
  }

  .yd9406 {
    margin-right: 5px;
  }

  .pxpud9 {
    width: 152px;
  }

  .cy48ol {
    margin-bottom: 30px;
  }

  .x59ktu,
  .bb8y2w {
    margin-bottom: 25px;
    text-align: center;
  }

  .wvt9bh {
    display: none;
  }

  .cpfxrw {
    margin-left: auto;
    margin-right: auto;
  }

  .su5dxe,
  .i5axh4 {
    text-align: center;
  }

  .o3tfco {
    padding: 80px 0;
  }

  

  .uvm58d {
    padding: 10px 0;
    height: 75px;
  }

  .beu7d8 {
    top: 76px;
    height: calc(100% - 76px);
  }

  .u26i1k {
    max-width: 69px;
  }

  .ac948m {
    text-align: center;
  }

  .m2sa59 {
    padding: 70px 0 40px;
  }

  .n6i6qj {
    padding: 50px 0 10px;
  }

  .jfzix5 {
    padding: 40px 0 10px;
  }

  .jlbgy5 {
    padding: 25px 0 65px;
  }

  .i1i603 {
    flex-direction: column;
    margin: 20px 0 0;
  }

  .xr5oeu, .okk8ko {
    width: 100%;
    margin: 0;
  }

  .xr5oeu .ii06do:last-child::before {
    background-image: url(../images/arrow-1.svg);
    left: -20px;
    bottom: 0;
    top: calc(100% - 15px);
  }

  .i1i603.eppsf5 .xr5oeu .ii06do:last-child::before {
    background-image: url(../images/arrow-3.svg);
    left: -20px;
    bottom: 0;
    top: calc(100% - 15px);
  }

  .xr5oeu .ii06do:first-child::before,
  .okk8ko .ii06do:first-child::before {
    top: calc(100% - 15px);
    left: -20px;
  }

  .ii06do {
    max-width: 100%;
    width: calc(100% - 10px);
    margin-left: auto;
    margin-bottom: 20px;
  }

  .ii06do::before {
    background-size: contain!important;
    width: 37px!important;
    height: 40px!important;
    transform: rotate(60deg);
  }
}

@media (max-width: 767px) {
  p,
  ul li,
  ol li,
  blockquote,
  code, 
  samp,
  input, 
  select, 
  textarea {
    font-size: 15px;
    line-height: 25px;
  }

  ul li {
    padding-left: 20px;
    margin-bottom: 15px;
  }

  ol li {
    margin-bottom: 15px;
  }

  ul li::before {
    top: 10px;
    left: 9px;
    width: 3px;
    height: 3px;
  }

  blockquote {
    margin: 15px 0;
    padding: 14px 18px 14px 27px; 
  }

  blockquote::before {
    left: 17px;
    width: 1px;
  }

  h1 {
    font-size: 32px;
    line-height: 43px;
    margin: 50px 0 25px;
  }

  h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 50px 0 25px;
  }

  h3 {
    font-size: 28px;
    line-height: 38px;
    margin: 50px 0 25px;
  }

  h4 {
    font-size: 26px;
    line-height: 35px;
    margin: 50px 0 25px;
  }

  h5 {
    font-size: 24px;
    line-height: 32px;
    margin: 50px 0 25px;
  }

  h6 {
    font-size: 20px;
    line-height: 27px;
    margin: 50px 0 25px;
  }

  input, 
  select, 
  textarea {
    padding: 9px 12px;
  }

  select {
    padding-right: 35px;
    background-size: 13px;
    background-position-x: calc(100% - 12px);
  }

  p {
    margin-bottom: 15px;
  }

  

  .e5ypbp {
    font-size: 18px;
    line-height: 24px;
    padding: 11px 20px;
  }

  .h8zth3 .e5ypbp {
    padding: 5px 11px;
    font-size: 16px;
    line-height: 21px;
  }

  .uvm58d {
    height: 50px;
    padding: 4px 0;
  }

  .h8zth3 .e5ypbp {
    width: 114px;
  }

  .beu7d8 {
    top: 51px;
    height: calc(100% - 51px);
  }

  .vyihxx {
    padding: 40px 0 5px;
  }

  .tkmu1y {
    padding: 30px 0 10px;
  }

  .gzql51 {
    padding: 20px 0 15px;
  }

  .wr19q3 {
    padding: 50px 0 65px;
  }

  .ii06do {
    padding: 15px;
  }

  .ii06do p {
    font-size: 14px;
    line-height: 23px;
  }

  .b3uxd6 {
    width: 100%;
  }

  .m10x7s {
    margin-right: 10px;
  }

  .bb8y2w {
    max-width: 331px;
    margin-left: auto;
    margin-right: auto;
  }

  .x59ktu {
    max-width: 264px;
    margin-left: auto;
    margin-right: auto;
  }

  .su5dxe {
    font-size: 32px;
    line-height: 43px;
  }

  .qczirf {
    max-width: 207px;
    font-size: 10px;
    line-height: 13px;  
  }

  .cpfxrw {
    padding: 30px 25px;
  }

  .cpfxrw select {
    padding: 11px 15px;
  }

  .rsp73c {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 25px;
  }

  .su5dxe {
    margin-bottom: 20px;
  }

  .m2sa59 {
    padding: 40px 0 35px;
  }

  .xe28rd li {
    font-size: 15px;
    line-height: 25px;
    padding-left: 34px;
    margin-bottom: 15px;
  }

  .xe28rd li::before {
    width: 24px;
    height: 24px;
    background-size: 60%;
    top: 0;
  }

  

  .ac948m {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 40px;
  }

  .qczirf {
    margin-top: 15px;
    margin-bottom: 0;
  }

  .thoqk4,
  .ago2hh {
    margin-top: 15px;
    font-size: 10px;
    line-height: 13px;
  }

  .cpfxrw .e5ypbp {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
  }

  .i5axh4 {
    font-size: 15px;
    line-height: 25px;
  }

  

  

  

  .f4ebnh p {
    font-size: 14px;
    line-height: 21px;
  }

  


  

  

  

  

  


  

  

  
  
  
  
  

  .vmhubh {
    max-width: 98px;
  }

  .cy48ol li a {
    width: 32px;
    height: 32px;
  }

  .bvrupc {
    margin-bottom: 30px;
    padding-bottom: 5px;
  }

  .cy48ol li a img {
    max-height: 80%;
  }

  .pxpud9 p {
    font-size: 15px;
    line-height: 22px;
  }

  .kqomb3,
  .mst4ag li a {
    font-size: 15px;
    line-height: 20px;
  }

  .mst4ag li {
    line-height: 18px;
    width: 50%;
    padding-right: 7px;
  }

  .ytxudf {
    margin: 0;
  }

  .iy2h7u {
    margin-top: 40px;
  }

  .igkh0w p {
    font-size: 12px;
    line-height: 16px;
  }

  .igkh0w {
    margin-bottom: 30px;
    text-align: left;
  }

  .juaeer {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--grey-medium-color);
  }

  .juaeer p {
    font-size: 12px;
    line-height: 16px;
  }
}

@media (max-width: 575px) {
  .wvt9bh {
    max-width: 161px;
  }
  .rsp73c {
    max-width: 213px;
    margin-left: auto;
    margin-right: auto;

  }
}

/* ===== TEXT LOGO OVERRIDES (domain name instead of SVG) ===== */
.u26i1k {
  max-width: none !important;
  width: auto;
  font-weight: 600;
  font-size: 20px;
  color: var(--black-color);
  text-decoration: none;
}

.u26i1k:hover {
  opacity: 1;
  color: var(--violet-color);
  text-decoration: none;
}

.vmhubh {
  max-width: none !important;
  width: auto;
  font-weight: 600;
  font-size: 18px;
  color: var(--white-color);
  text-decoration: none;
}

.vmhubh:hover {
  color: var(--violet-light-color);
  text-decoration: none;
  opacity: 1;
}

/* Footer top — выравнивание по центру (нет address-блока) */
.gde6q2 {
  align-items: center;
}

/* ===== S-CITIES — Choose your city block ===== */
.pa02uc {
  padding: 0 0 60px;
}

.ddn7xk {
  font-size: 22px;
  font-weight: 600;
  color: var(--violet-color);
  margin-bottom: 1.25rem;
}

.v9z151 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--grey-medium-color);
  border-radius: 8px;
  overflow: hidden;
}

.r1jlfl {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--violet-color);
  text-decoration: none;
  border-right: 1px solid var(--grey-medium-color);
  border-bottom: 1px solid var(--grey-medium-color);
  transition: background var(--transition), color var(--transition);
  line-height: 1.4;
}

.r1jlfl:hover {
  background-color: var(--violet-light-color);
  color: var(--violet-accent-color);
  text-decoration: none;
}

.r1jlfl:nth-child(4n) {
  border-right: none;
}

@media (max-width: 992px) {
  .v9z151 {
    grid-template-columns: repeat(3, 1fr);
  }
  .r1jlfl:nth-child(4n) {
    border-right: 1px solid var(--grey-medium-color);
  }
  .r1jlfl:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .v9z151 {
    grid-template-columns: repeat(2, 1fr);
  }
  .r1jlfl:nth-child(3n) {
    border-right: 1px solid var(--grey-medium-color);
  }
  .r1jlfl:nth-child(2n) {
    border-right: none;
  }
}

/* ===== ARTICLE CONTENT TYPOGRAPHY ===== */
.d6qo2w {
  line-height: 1.7;
}

.d6qo2w p {
  margin: 0 0 18px;
}

.d6qo2w h1 {
  font-size: 34px;
  line-height: 1.25;
  margin: 0 0 24px;
}

.d6qo2w h2 {
  font-size: 26px;
  line-height: 1.3;
  margin: 44px 0 16px;
}

.d6qo2w h3 {
  font-size: 21px;
  line-height: 1.35;
  margin: 36px 0 12px;
}

.d6qo2w h4 {
  font-size: 18px;
  line-height: 1.4;
  margin: 28px 0 10px;
}

.d6qo2w h5 {
  font-size: 16px;
  line-height: 1.45;
  margin: 22px 0 8px;
}

.d6qo2w h6 {
  font-size: 14px;
  line-height: 1.5;
  margin: 18px 0 8px;
}

.d6qo2w ul,
.d6qo2w ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.d6qo2w ul {
  list-style-type: disc;
}

.d6qo2w ol {
  list-style-type: decimal;
}

.d6qo2w li {
  margin-bottom: 6px;
  padding-left: 0;
}

.d6qo2w li::before {
  display: none;
}

/* ===== LANGUAGE SWITCHER ===== */
.t038n2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.t038n2 a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.t038n2 a:hover,
.t038n2 a.is-active {
  color: var(--white-color);
  text-decoration: none;
}

.t038n2 span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== DISCLAIMER paragraph spacing ===== */
.igkh0w p + p {
  margin-top: 8px;
}

/* ===== S-ALTERNATIVES — Payday Loan Alternatives table ===== */
.m7sa1o {
  padding: 60px 0;
  background: var(--grey-light-color);
}

.m7sa1o h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--violet-dark-color);
  margin: 0 0 24px;
}

.kzvuer {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(27, 86, 181, 0.08);
}

.xgermi {
  width: 100%;
  border-collapse: collapse;
  background: var(--white-color);
  font-size: 14px;
}

.xgermi thead {
  background: var(--violet-dark-color);
  color: var(--white-color);
}

.xgermi thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
}

.xgermi tbody tr {
  border-bottom: 1px solid var(--grey-medium-color);
  transition: background var(--transition);
}

.xgermi tbody tr:last-child {
  border-bottom: none;
}

.xgermi tbody tr:hover {
  background: var(--grey-light-color);
}

.xgermi tbody td {
  padding: 13px 18px;
  color: var(--text-color);
  vertical-align: middle;
}

.xgermi tbody td:first-child {
  font-weight: 600;
  color: var(--black-color);
}

.r484aa {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--violet-light-color);
  color: var(--violet-dark-color);
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .xgermi thead {
    display: none;
  }
  .xgermi tbody tr {
    display: block;
    margin-bottom: 12px;
    border: 1px solid var(--grey-medium-color);
    border-radius: 8px;
  }
  .xgermi tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid var(--grey-medium-color);
  }
  .xgermi tbody td:last-child {
    border-bottom: none;
  }
  .xgermi tbody td::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--grey-color);
    margin-right: 12px;
    flex-shrink: 0;
  }
}

/* ===== S-MAP — Payday Loans Near Me block ===== */
.t1ujp6 {
  padding: 60px 0;
}

.t1ujp6 h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--violet-dark-color);
  margin: 0 0 24px;
}

.fy7xth {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 86, 181, 0.12);
  border: 1px solid var(--grey-medium-color);
}

.fy7xth iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 600px) {
  .m7sa1o {
    padding: 40px 0;
  }
  .m7sa1o h2,
  .t1ujp6 h2 {
    font-size: 20px;
  }
  .t1ujp6 {
    padding: 40px 0;
  }
  .fy7xth iframe {
    height: 280px;
  }
}

