/* =========================
   BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #f59e0b;
  text-decoration: none;
}

p {
  margin: 0 0 25px;
  font-size: 22px;
  line-height: 1.6;
  color: rgb(38, 38, 38);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =========================
   PAGE
========================= */
#smb-page {
  max-width: 100%;
}

#smb-page h1 {
  font-size: 60px;
  line-height: 63px;
  margin: 0 0 25px;
}

#smb-page h3 {
  margin: 25px 0;
  color: rgb(53, 155, 118);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.3;
}

.smb-page-main {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

.smb-page-left {
  flex: 1 1 0;
  max-width: 740px;
  margin: 0 auto;
  padding: 10px;
}

.smb-left-main {
  max-width: 100%;
}

.smb-page-right {
  flex: 1 1 0;
  max-width: 300px;
  margin: 0 auto;
  padding: 10px;
  position: relative;
}

.smb-right-main {
  display: block;
  max-width: 100%;
  padding: 20px;
  border: 1px solid rgb(237, 237, 237);
}

.smb-border-main {
  padding: 15px;
  border: 2px solid red;
}

.smb-page-right p {
  margin-bottom: 10px;
}

/* =========================
   META / AUTHOR
========================= */
#smb-page .advertisement {
  font-size: 13px;
  color: rgb(38, 38, 38);
  text-align: center;
}

.smb-autor {
  display: flex;
  margin-bottom: 20px;
}

.smb-autor-img {
  max-width: 40px;
  max-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}

.smb-autor-content {
  padding-left: 20px;
  text-align: left;
  border-left: 2px solid #000;
}

.smb-autor-name {
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.smb-autor-date {
  font-size: 16px;
  font-weight: 700;
}

/* =========================
   MEDIA / CTA
========================= */
.smb-main-img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border: 0;
}

.smb-click-button {
  display: block;
  width: 90%;
  margin: 20px auto;
  padding: 15px;
  background: linear-gradient(135deg, #ff7a18, #ff3d00);
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  border-radius: 10px;
}

.smb-right-button {
  display: block;
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #ff7a18, #ff3d00);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  border-radius: 10px;
}

/* =========================
   FLOATING / MOBILE CTA
========================= */
.smb-button-bottom {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  display: none;
  width: 100%;
  padding: 0 15px 15px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
}

.smb-mb-block {
  display: none;
}

.smb-fixed {
  position: sticky;
  top: 10px;
  max-width: 258px;
}

/* =========================
   FLEX BLOCKS
========================= */
.smb-flex-block img {
  flex: 1 1 0;
  max-width: 257px;
}

.smb-flex-block center {
  padding: 10px;
}

.smb-flex-block p {
  margin-bottom: 0;
}

.smb-comment-block {
  display: flex;
  align-items: center;
}

.smb-comment-block p {
  flex: 1 1 0;
}

/* =========================
   POPUP
========================= */
.popup {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: all 0.55s ease;
}

.popup.is-active {
  z-index: 2020;
  opacity: 1;
}

.popup .overlay {
  position: absolute;
  inset: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.8);
}

.popup .inner {
  position: relative;
  z-index: 1000;
  width: 870px;
  overflow: hidden;
  color: #000;
  font-weight: 700;
  background-color: rgb(242, 242, 242);
  border-radius: 20px;
}

.popup .overlay-header {
  padding: 5px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  background-color: rgb(154, 217, 79);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.popup .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 10px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  text-shadow: rgb(255, 255, 255) 0 1px 0;
  background-color: rgb(223, 223, 223);
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.popup .inner a {
  display: block;
  color: #000;
}

.popup .inner a:not(.button) {
  color: #fff;
  font-weight: 400;
}

.popup .inner img {
  max-width: 100%;
  max-height: 230px;
}

.popup .inner h1 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 900;
  color: #000;
}

.popup .inner p {
  margin-top: 10px;
  font-size: 15px;
  color: #000;
}

.popup .inner .button {
  display: inline-block;
  margin-top: 10px;
  padding: 20px 30px;
  font-family: Verdana, Helvetica, serif;
  font-size: 26px;
  line-height: 1.33333;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  color: rgb(5, 62, 20);
  background-color: rgb(92, 184, 92);
  border: 3px solid rgb(45, 113, 45);
  border-radius: 60px;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
}

.popup .inner .button:hover {
  background-color: rgb(68, 157, 68);
  color: #fff;
}

.popup .inner .button i {
  margin-left: 15px;
}

.popup .popup-bottom-p {
  margin: 0;
  font-size: 12.8px;
  color: rgb(106, 106, 106);
}

/* =========================
   COLUMNS
========================= */
.columns {
  margin: -7.5px -7.5px 0;
}

.columns:last-child {
  margin-bottom: -7.5px;
}

.column {
  display: block;
  flex: 1 1 0;
  padding: 7.5px;
}

/* =========================
   UTILITY IDS LEFT FROM TEMPLATE
   (оставлены только те, что реально что-то меняют)
========================= */
#smb-fixed-flag {
  max-height: 1px;
}

#i27o1w {
  font-size: 52px;
}

#iyxeig {
  font-size: 44px;
}

#iqka {
  font-size: 44px;
}

#iq5jri,
#isa0uj,
#ixp9ky,
#ipseqj,
#ip1qvv,
#ijaclr,
#i4b2z6,
#ioh4n1,
#i9zibf,
#iiqg32,
#i0aktz,
#ifhbwc,
#i0csol,
#i2valq,
#ikke3j,
#i2pzb6,
#iuld5v,
#itv5s1,
#iqiigr,
#iun8d2,
#ivgakl,
#iikxt2,
#ibr0nv,
#iihfpl,
#i0gmuk,
#ip8qki,
#is7fev,
#i919q7 {
  color: rgb(255, 128, 4);
}

#ibugwf,
#iljjjc,
#ipqpjk,
#ib00xg,
#ijbbba,
#ilreoz,
#ifhtg4 {
  color: rgb(16, 140, 221);
}

#ig30am,
#ihx7al,
#iuadb8,
#i9qhwv,
#i18ylk,
#iae96g,
#iyfmz2,
#iilzyr,
#im3he2 {
  color: #000;
}

#i7ytrl,
#ikreyl,
#iksini,
#ikdpo6,
#ixk02h,
#i9d44l,
#i5r98e,
#ik9h2l,
#ibb3ps,
#ib56am {
  text-align: center;
}

#iklkf6,
#i7uvwi,
#id0mgo,
#iqtbcz,
#i0fzcb,
#i5c2n2,
#ihgx9h,
#i5avlc {
  font-weight: 400;
}

#i5k851 {
  width: 284px;
  height: 277px;
  margin-right: 20px;
}

#id8fso {
  width: 281px;
  height: 281px;
  margin-right: 20px;
}

#imhcbo {
  width: 276px;
  height: 276px;
  margin-right: 20px;
}

#iviynf {
  width: 723px;
  height: 434px;
}

#i5qyok {
  font-size: 42px;
}

#i9zggs,
#iowt8v,
#ilpisk,
#if4j84 {
  font-size: 30px;
  font-family: "Comic Sans MS", cursive, sans-serif;
}

#inw0bi,
#ibph2w,
#i4fesp,
#i8rxpg {
  font-size: 35px;
  font-family: "Comic Sans MS", cursive, sans-serif;
  color: rgb(255, 0, 0);
}

#i2k12k,
#i1z7mo,
#iaz0hj,
#iaix8m,
#iedg6 {
  font-size: 20px;
}

#ink65g,
#i5gikg,
#ipu78e,
#i5aeih {
  font-size: 15px;
}

#i8pyay {
  font-size: 16pt;
  font-family: "Open Sans", sans-serif;
}

#ink65g,
#i5gikg,
#ipu78e,
#i5aeih,
#i16vij,
#irxlfy {
  font-size: 85%;
}

#iut75l {
  border: 1.5px solid #000;
}

#ia2ujg {
  background-color: rgba(209, 236, 247, 0.42);
  border: 2.5px solid rgb(231, 34, 34);
}

#iksj1 {
  box-shadow: #000 0 0 5px 0;
}

#iw5973 {
  font-size: 14px;
  background-color: rgb(255, 126, 0);
  box-shadow: #000 2px 2px 0 0;
}

#i5xf69 {
  background-color: rgb(255, 126, 0);
  box-shadow: #000 2px 2px 3px 0;
}

#ixr4v8,
#ihem8z,
#iy9b8r,
#ingxkt,
#i0wxbz {
  display: block;
  min-width: 50px;
  min-height: 50px;
  padding: 5px;
  text-align: center;
}

#ih8u5r,
#ir0wp2,
#iooq55,
#ib4wz5,
#ika5wn,
#itymgr,
#i6j19k {
  max-width: 100%;
}

#ilohg {
  height: 40px;
}

#ii3rt4 {
  background-color: rgb(10, 10, 10);
}

#i9vwao {
  color: #fff;
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 769px) {
  .columns:not(.is-desktop) {
    display: flex;
    align-items: stretch;
    margin-right: 30px;
  }

  .column {
    padding: 60px 10px 50px;
    text-align: center;
  }

  .column.is-6,
  .column.is-6-tablet {
    flex: 0 0 auto;
    width: 50%;
  }

  .column.is-3 {
    flex: 0 0 auto;
    width: 30%;
    background: linear-gradient(rgb(191, 191, 191) 0%, rgb(171, 171, 171) 64%, rgb(171, 171, 171) 100%);
  }

  .column.is-7 {
    flex: 0 0 auto;
    width: 70%;
  }

  .z-flex-inherit {
    flex: inherit !important;
  }
}

/* =========================
   TABLET / MOBILE
========================= */
@media (max-width: 768px) {
  #smb-page h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .smb-page-main {
    flex-direction: column;
  }

  .smb-page-right,
  .smb-page-left {
    max-width: 100%;
  }

  .smb-mb-block {
    display: block;
  }

  .popup .inner {
    margin: 10px;
    width: auto;
    text-align: center;
  }

  .popup .inner a {
    padding: 10px 10px 20px;
  }

  .popup .inner .column {
    padding-top: 0;
    padding-bottom: 0;
  }

  .popup .inner img {
    max-width: 70vw;
    max-height: 30vh;
  }

  .popup .inner h1 {
    font-size: 22px;
    line-height: 25px;
  }

  .popup .inner p {
    margin-top: 2px;
  }

  .popup .inner .button {
    margin-top: 5px;
    padding: 10px 20px !important;
    font-size: 11px !important;
  }

  .popup .inner .button i {
    display: none !important;
  }

  .smb-comment-block {
    flex-direction: column;
  }

  #icw6u2 {
    background-color: rgb(26, 195, 0);
  }
}

@media (max-width: 480px) {
  #iviynf {
    height: 191px;
  }

  #icw6u2 {
    background-color: rgb(255, 126, 0);
  }

  p {
    font-size: 18px;
    line-height: 1.55;
  }
}
/*  */
.article-feature-image {
  display: block;
  width: 100%;
  max-width: 820px;
  height: auto;
  margin: 24px auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
/*  */
#hero-subtitle {
  position: relative;
  margin: 18px 0 0;
  padding-left: 22px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  color: #1f2937;
  max-width: 920px;
}

#hero-subtitle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 4px;
  height: calc(100% - 8px);
  background: #d61f26;
  border-radius: 10px;
}

@media (max-width: 991px) {
  #hero-subtitle {
    margin-top: 16px;
    padding-left: 18px;
    font-size: 19px;
    line-height: 1.55;
  }

  #hero-subtitle::before {
    width: 3px;
    top: 3px;
    height: calc(100% - 6px);
  }
}

@media (max-width: 640px) {
  #hero-subtitle {
    margin-top: 12px;
    padding-left: 16px;
    font-size: 17px;
    line-height: 1.6;
  }

  #hero-subtitle::before {
    width: 3px;
    top: 2px;
    height: calc(100% - 4px);
  }
}
/*  */
.legal-page-section {
    padding: 40px 0;
    background: #ffffff;
}

.legal-page-container {
    width: min(980px, calc(100% - 24px));
    margin: 0 auto;
}

.legal-page-header {
    margin-bottom: 26px;
    text-align: center;
}

.legal-page-title {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: #111827;
}

.legal-page-updated {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
}

.legal-page-content {
    padding: 26px 24px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.legal-page-content h2 {
    margin: 24px 0 10px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
}

.legal-page-content h2:first-of-type {
    margin-top: 0;
}

.legal-page-content p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.72;
    color: #374151;
}

.legal-page-list {
    margin: 0 0 16px 0;
    padding-left: 20px;
}

.legal-page-list li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.legal-page-content a {
    color: #0f4c81;
    text-decoration: underline;
    word-break: break-word;
}

.legal-page-content strong {
    font-weight: 700;
    color: #111827;
}

@media (max-width: 767px) {
    .legal-page-section {
        padding: 28px 0;
    }

    .legal-page-container {
        width: calc(100% - 16px);
    }

    .legal-page-header {
        margin-bottom: 18px;
    }

    .legal-page-title {
        font-size: 27px;
        line-height: 1.16;
    }

    .legal-page-updated {
        font-size: 13px;
    }

    .legal-page-content {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .legal-page-content h2 {
        margin: 20px 0 8px;
        font-size: 18px;
        line-height: 1.3;
    }

    .legal-page-content p,
    .legal-page-list li {
        font-size: 14px;
        line-height: 1.65;
    }

    .legal-page-list {
        padding-left: 18px;
    }
}
.contact-box {
    margin-top: 16px;
    padding: 16px;
    border-radius: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 8px;
}

.contact-row strong {
    color: #111827;
}

@media (max-width: 640px) {
    .contact-row {
        flex-direction: column;
        font-size: 14px;
    }
}
/**/
.contact-page-section .legal-page-updated {
    max-width: 760px;
    margin: 0 auto;
}

.contact-box {
    margin: 14px 0 18px;
    padding: 18px;
    border-radius: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.65;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-row strong {
    flex: 0 0 190px;
    color: #111827;
    font-weight: 700;
}

.contact-row span {
    flex: 1 1 auto;
    color: #374151;
    text-align: right;
}

.contact-form-card {
    margin-top: 14px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #f9fafb;
}

.contact-form-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-label {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #111827;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    font: inherit;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-input {
    min-height: 48px;
}

.contact-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    border-color: #0f4c81;
    box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.08);
}

.contact-form-note {
    font-size: 13px;
    line-height: 1.65;
    color: #6b7280;
}

.contact-form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 50px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: #0f4c81;
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 10px 24px rgba(15, 76, 129, 0.18);
}

.contact-form-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15, 76, 129, 0.22);
}

.contact-help-box {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.contact-help-item {
    padding: 18px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
}

.contact-help-item h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #111827;
}

.contact-help-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #374151;
}

@media (max-width: 767px) {
    .contact-box {
        padding: 14px 12px;
        border-radius: 12px;
    }

    .contact-row {
        flex-direction: column;
        gap: 2px;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .contact-row strong,
    .contact-row span {
        flex: initial;
        text-align: left;
    }

    .contact-form-card {
        padding: 14px;
        border-radius: 14px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-form-label {
        font-size: 13px;
    }

    .contact-form-input {
        min-height: 44px;
        padding: 10px 12px;
    }

    .contact-form-textarea {
        min-height: 130px;
        padding: 10px 12px;
    }

    .contact-form-button {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        font-size: 14px;
    }

    .contact-help-box {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-help-item {
        padding: 14px 12px;
    }

    .contact-help-item h3 {
        font-size: 16px;
    }

    .contact-help-item p {
        font-size: 14px;
    }
}