:root {
    /* Основные цвета */
    --color-primary: #DAFE31;
    --color-primary-light: #E4FF5A;
    --color-primary-dark: #B8D62A;
    --color-background: #1C2C3A;
    --color-text: #fff;
    --color-text-secondary: #888;

    /* Тени и градиенты */
    --shadow-primary: 0 2px 10px rgba(218, 254, 49, 0.1);
    --shadow-button: 0 4px 15px rgba(218, 254, 49, 0.3);
    --shadow-button-hover: 0 10px 25px rgba(218, 254, 49, 0.4);
    --gradient-primary: linear-gradient(45deg, var(--color-primary), var(--color-primary-dark));
    --gradient-overlay: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);

    /* Прозрачность */
    --opacity-background: rgba(11, 23, 36, 0.9);
    --opacity-payment: rgba(218, 254, 49, 0.05);
    --opacity-payment-hover: rgba(218, 254, 49, 0.1);
    --opacity-border: rgba(218, 254, 49, 0.1);
    
    /* Цвета для header */
    --header-bg: linear-gradient(180deg, rgba(28, 44, 58, 0.98), rgba(28, 44, 58, 0.95));
    --header-bg-blur: rgba(28, 44, 58, 0.95);
    --header-bg-gradient: linear-gradient(135deg, rgba(28, 44, 58, 0.98) 0%, rgba(45, 53, 96, 0.95) 100%);
    --header-border: linear-gradient(90deg, transparent, var(--main-title), transparent);
    --header-border-opacity: 0.15;
    --header-shadow: 0 4px 30px rgba(218, 254, 49, 0.1);
    
    /* Логотип header */
    --header-logo-bg: var(--main-highlight);
    --header-logo-border: 1px solid var(--main-border);
    --header-logo-shadow: 0 0 10px var(--main-shadow);
    --header-logo-hover-bg: rgba(218, 254, 49, 0.1);
    --header-logo-hover-shadow: 0 8px 25px var(--main-shadow);
    
    /* Кнопки header */
    --header-btn-solid-bg: #735CFC;
    --header-btn-solid-color: #fff;
    --header-btn-solid-shadow: 0 4px 15px rgba(115, 92, 252, 0.3);
    --header-btn-solid-hover-shadow: 0 6px 20px rgba(115, 92, 252, 0.4);
    --header-btn-solid-hover-bg: #8A75FF;
    
    --header-btn-outline-bg: transparent;
    --header-btn-outline-color: #DAFE31;
    --header-btn-outline-border: 2px solid #DAFE31;
    --header-btn-outline-hover-bg: rgba(218, 254, 49, 0.1);
    --header-btn-outline-hover-color: #E4FF5A;
    
    /* Эффекты header */
    --header-glow: radial-gradient(circle at 20% 20%, rgba(218, 254, 49, 0.2) 0%, transparent 50%);
    --header-shine: linear-gradient(45deg, transparent, rgba(218, 254, 49, 0.1), transparent);
    --header-hover-transform: translateY(-2px);
    
    /* Основные цвета для main секции */
    --main-bg: #1C2C3A;
    --main-text: rgba(255, 255, 255, 0.9);
    --main-title: #DAFE31;
    --main-accent: #735CFB;
    --main-border: rgba(218, 254, 49, 0.1);
    --main-shadow: rgba(218, 254, 49, 0.2);
    --main-hover: #fff;
    --main-highlight: rgba(218, 254, 49, 0.15);

    /* Градиенты для main секции */
    --main-bg-gradient: linear-gradient(180deg, rgba(28, 44, 58, 0.95) 0%, rgba(11, 23, 36, 0.98) 100%);
    --main-border-gradient: linear-gradient(90deg, transparent, var(--main-accent), transparent);
    --main-title-gradient: linear-gradient(90deg, var(--main-title), rgba(218, 254, 49, 0.3));
    --main-glow-gradient: radial-gradient(circle at 20% 30%, rgba(218, 254, 49, 0.03) 0%, transparent 30%), 
                         radial-gradient(circle at 80% 70%, rgba(218, 254, 49, 0.03) 0%, transparent 30%);
    
    /* Основные цвета футера */
    --footer-bg: #0B1724;
    --footer-border: rgba(218, 254, 49, 0.1);
    --footer-column-bg: rgba(218, 254, 49, 0.05);
    --footer-text: #e0e0e0;
    --footer-title: #DAFE31;
    --footer-link: #DAFE31;
    --payment-item-bg: rgba(218, 254, 49, 0.05);
    --payment-item-bg-hover: rgba(218, 254, 49, 0.1);
    --copyright-text: #999;
    --footer-bg-gradient: linear-gradient(to bottom, #1C2C3A, #0B1724);
    --footer-border-gradient: linear-gradient(90deg, transparent, var(--footer-title), transparent);
    --footer-section-bg: var(--footer-column-bg);
    --footer-section-border: var(--footer-border);
    --footer-section-shadow: 0 10px 20px var(--footer-border);
    --footer-title-underline: linear-gradient(90deg, var(--footer-title), transparent);
    --footer-link-hover: #fff;
    --payment-option-bg: var(--payment-item-bg);
    --payment-option-border: var(--footer-border);
    --payment-option-bg-hover: var(--payment-item-bg-hover);
    --payment-option-shadow: 0 5px 15px var(--footer-border);
    --payment-icon-filter: grayscale(100%) brightness(0.8);
    --payment-icon-filter-hover: grayscale(0%) brightness(1);
    --footer-legal-text: var(--copyright-text);
    --footer-legal-border: var(--footer-border-gradient);

    /* Основные цвета для баннеров */
    --banner-title: var(--main-title);
    --banner-text: var(--main-text);
    --banner-text-opacity: 0.95;
    --banner-overlay: var(--opacity-background);
    --banner-overlay-gradient: linear-gradient(135deg, rgba(11, 23, 36, 0.95) 0%, rgba(11, 23, 36, 0.75) 100%);
    
    /* Элементы баннера */
    --banner-badge-bg: var(--main-highlight);
    --banner-badge-border: 1px solid var(--main-border);
    --banner-badge-text: var(--main-title);
    --banner-title-shadow: 0 2px 15px var(--main-shadow);
    --banner-title-underline: var(--main-title-gradient);
    
    /* Кнопки баннера */
    --banner-button-bg: #1C2C3A;
    --banner-button-text: var(--color-text);
    --banner-button-gradient: linear-gradient(45deg, #1C2C3A, #2D3560);
    --banner-button-shadow: 0 4px 20px var(--main-shadow);
    --banner-button-shadow-hover: 0 8px 30px var(--main-shadow);
    --banner-button-shine: var(--gradient-overlay);
    --banner-button-outline-text: var(--main-text);
    --banner-button-outline-border: 2px solid #DAFE31;
    --banner-button-outline-hover: var(--main-highlight);
    
    /* Статистика баннера */
    --banner-stat-bg: var(--footer-column-bg);
    --banner-stat-border: var(--footer-border);
    --banner-stat-hover-bg: var(--payment-item-bg-hover);
    --banner-stat-shine: var(--gradient-overlay);
    --banner-stat-number: var(--main-title);
    --banner-stat-label: var(--main-text);
    --banner-stat-label-opacity: 0.85;
    
    /* Изображения баннера */
    --banner-image-border: 2px solid var(--main-border);
    --banner-image-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--color-background);
    color: var(--color-text);
}
.dbUZ9D {
    background: var(--header-bg-blur);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid var(--header-logo-border);
    position: relative;
}

.dbUZ9D::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--header-border);
}

.xa10h3nt {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.EwOj {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.EwOj:hover {
    transform: var(--header-hover-transform);
}

.EwOj img {
    height: 35px;
    width: auto;
    filter: drop-shadow(var(--header-logo-shadow));
}

.U6id {
    display: flex;
    gap: 12px;
}

.ei_0u2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ei_0u2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--header-shine);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.ei_0u2:hover::before {
    transform: translateX(100%);
}

.DHiil_2 {
    background: var(--header-btn-solid-bg);
    color: var(--header-btn-solid-color);
    box-shadow: var(--header-btn-solid-shadow);
}

.DHiil_2:hover {
    transform: var(--header-hover-transform);
    box-shadow: var(--header-btn-solid-hover-shadow);
}

.mckXlbxBchKq {
    background: var(--header-btn-outline-bg);
    color: var(--header-btn-outline-color);
    border: var(--header-btn-outline-border);
}

.mckXlbxBchKq:hover {
    background: var(--header-btn-outline-hover-bg);
    transform: var(--header-hover-transform);
}

@media (max-width: 768px) {
    .xa10h3nt {
        padding: 0 20px;
    }

    .EwOj {
        padding: 5px 10px;
    }

    .EwOj img {
        height: 30px;
    }

    .DHiil_2 {
      display: none;
    }

    .ei_0u2 {
        padding: 8px 20px;
        font-size: 12px;
    }
}
.Gky42 {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.Gky42::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('img/gmaN8jXuC.png') center/cover no-repeat;
  filter: brightness(0.2);
  z-index: -1;
}

.Gky42::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--banner-overlay-gradient);
  z-index: -1;
}

.xwRzS4O0bpta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.w2SDas_ {
  position: relative;
}

.Agj2 {
  display: inline-block;
  padding: 8px 16px;
  background: var(--banner-badge-bg);
  border: var(--banner-badge-border);
  border-radius: 20px;
  color: var(--banner-badge-text);
  font-size: 14px;
  margin-bottom: 20px;
}

.FwsybyWmVpd3 {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--banner-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.FwsybyWmVpd3 span {
  color: var(--banner-title);
}

.Xmmor {
  font-size: 18px;
  line-height: 1.6;
  color: var(--banner-text);
  margin-bottom: 40px;
}

.B_ydfbxb {
  display: flex;
  gap: 20px;
}

.LHSvb38 {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: var(--banner-button-bg);
  color: var(--banner-button-text);
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.LHSvb38::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--banner-button-shine);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.LHSvb38:hover::before {
  transform: translateX(100%);
}

.LHSvb38:hover {
  transform: translateY(-3px);
  box-shadow: var(--banner-button-shadow);
}

.t1gdY21 {
  background: transparent;
  color: var(--banner-button-outline-text);
  border: var(--banner-button-outline-border);
}

.t1gdY21:hover {
  background: var(--banner-button-outline-hover);
}

.MHry17HM {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.iim_ {
  text-align: center;
  padding: 20px;
  background: var(--banner-stat-bg);
  border-radius: 12px;
  border: var(--banner-stat-border);
  transition: all 0.3s ease;
}

.iim_:hover {
  transform: translateY(-5px);
  background: var(--banner-stat-hover-bg);
}

.Jp8m2kdw10 {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--banner-stat-number);
  margin-bottom: 8px;
}

.m_ctP9 {
  font-size: 14px;
  color: var(--banner-stat-label);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mayNJm {
  position: relative;
}

.mayNJm::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: var(--banner-image-border);
  border-radius: 20px;
  z-index: -1;
}

.mayNJm img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--banner-image-shadow);
}

@media (max-width: 1024px) {
  .Gky42-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mayNJm {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .Gky42 {
    padding: 60px 0;
  }

  .FwsybyWmVpd3 {
    font-size: 40px;
  }

  .Xmmor {
    font-size: 16px;
  }

  .B_ydfbxb {
    flex-direction: column;
  }

  .LHSvb38 {
    width: 100%;
    justify-content: center;
  }

  .MHry17HM {
    grid-template-columns: 1fr;
  }
}
.W7_pn9 {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.W7_pn9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-glow-gradient);
}

.Z40hf8c {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.Z40hf8c h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: var(--main-title);
    margin-bottom: 40px;
    text-transform: none;
    letter-spacing: -1px;
    position: relative;
    padding-left: 40px;
    max-width: 1000px;
    line-height: 1.1;
    text-shadow: 0 0 30px var(--main-shadow);
}

.Z40hf8c h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background: var(--main-title-gradient);
    border-radius: 5px;
    box-shadow: 0 0 40px var(--main-shadow);
}

.Z40hf8c h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    color: var(--main-hover);
    margin: 30px 0 25px;
    position: relative;
    display: inline-block;
    max-width: 1000px;
    line-height: 1.2;
    padding-bottom: 20px;
}

.Z40hf8c h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--main-title-gradient);
    border-radius: 3px;
    box-shadow: 0 0 30px var(--main-shadow);
}

.Z40hf8c h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--main-text);
    margin: 50px 0 30px;
    position: relative;
    max-width: 1000px;
    line-height: 1.3;
    padding-left: 30px;
}

.Z40hf8c h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background: var(--main-accent);
    border-radius: 3px;
    box-shadow: 0 0 20px var(--main-shadow);
}

.Z40hf8c p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--main-text);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 1000px;
    position: relative;
}

.Z40hf8c img {
    width: 100%;
    margin: 20px 0;
}

.Z40hf8c ul, .Z40hf8c ol {
    margin: 40px 0;
    padding-left: 0;
    list-style: none;
    max-width: 1000px;
}

.Z40hf8c li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--main-text);
    margin-bottom: 25px;
    position: relative;
    padding-left: 45px;
    font-weight: 400;
    transition: all 0.5s ease;
}

.Z40hf8c li:hover {
    transform: translateX(5px);
    color: var(--main-hover);
}

.Z40hf8c ul li::before {
    content: '✦';
    color: var(--main-accent);
    position: absolute;
    left: 0;
    font-size: 24px;
    font-weight: 600;
    text-shadow: 0 0 20px var(--main-shadow);
    transition: all 0.5s ease;
}

.Z40hf8c ul li:hover::before {
    transform: rotate(45deg) scale(1.4);
    text-shadow: 0 0 40px var(--main-shadow);
}

.Z40hf8c ol {
    counter-reset: item;
}

.Z40hf8c ol li {
    counter-increment: item;
}

.Z40hf8c ol li::before {
    content: counter(item);
    color: var(--main-accent);
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 18px;
    background: var(--main-highlight);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.5s ease;
    box-shadow: 0 0 20px var(--main-shadow);
}

.Z40hf8c ol li:hover::before {
    background: var(--main-highlight);
}

.Z40hf8c a {
    color: var(--main-accent);
    text-decoration: none;
    transition: all 0.6s ease;
    position: relative;
    font-weight: 600;
    padding: 0 4px;
}

.Z40hf8c a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--main-accent);
    transition: width 0.6s ease;
    box-shadow: 0 0 20px var(--main-shadow);
}

.Z40hf8c a:hover {
    color: var(--main-hover);
}

.Z40hf8c a:hover::before {
    width: 100%;
}

.content-highlight {
    background: var(--main-highlight);
    padding: 5px 12px;
    border-radius: 10px;
    color: var(--main-accent);
    font-weight: 600;
    box-shadow: 0 0 25px var(--main-shadow);
}

@media (max-width: 1600px) {
    .W7_pn9 {
        padding: 160px 0;
    }
}

@media (max-width: 1200px) {
    .Z40hf8c {
        padding: 0 60px;
    }

    .Z40hf8c h1 {
        font-size: 36px;
        margin-bottom: 45px;
    }

    .Z40hf8c h2 {
        font-size: 30px;
        margin: 50px 0 35px;
    }

    .Z40hf8c h3 {
        font-size: 24px;
        margin: 40px 0 25px;
    }

    .Z40hf8c p, .Z40hf8c li {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .W7_pn9 {
        padding: 100px 0;
    }

    .Z40hf8c {
        padding: 0 40px;
    }

    .Z40hf8c h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .Z40hf8c h2 {
        font-size: 28px;
        margin: 45px 0 30px;
    }

    .Z40hf8c h3 {
        font-size: 22px;
        margin: 35px 0 20px;
    }

    .Z40hf8c p, .Z40hf8c li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .W7_pn9 {
        padding: 80px 0;
    }

    .Z40hf8c {
        padding: 0 30px;
    }

    .Z40hf8c h1 {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .Z40hf8c h2 {
        font-size: 26px;
        margin: 40px 0 25px;
    }

    .Z40hf8c h3 {
        font-size: 20px;
        margin: 30px 0 20px;
    }

    .Z40hf8c p, .Z40hf8c li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .W7_pn9 {
        padding: 60px 0;
    }

    .Z40hf8c {
        padding: 0 20px;
    }

    .Z40hf8c h1 {
        font-size: 28px;
    }

    .Z40hf8c h2 {
        font-size: 24px;
    }

    .Z40hf8c h3 {
        font-size: 18px;
    }

    .Z40hf8c p, .Z40hf8c li {
        font-size: 12px;
    }
}
.Gw_5_xI7 {
    position: relative;
    padding: 80px 0;
    background: var(--color-background);
    overflow: hidden;
}

.Gw_5_xI7::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--main-glow-gradient);
    z-index: 1;
}

.yvmaxkj4KopG9 {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.Ilmff {
    text-align: center;
    margin-bottom: 60px;
}

.YboYtf {
    display: inline-block;
    padding: 8px 16px;
    background: var(--main-highlight);
    color: var(--main-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px var(--main-shadow);
}

.R17_m267fs {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--main-title);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 0 25px var(--main-shadow);
}

.Qgmmq9z {
    font-size: 18px;
    color: var(--main-text);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.E5zqG {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.xYJrj_kAhj {
    background: var(--color-darker);
    border: 1px solid var(--main-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.xYJrj_kAhj::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--main-glow-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.xYJrj_kAhj:hover {
    transform: translateY(-10px);
    border-color: var(--main-accent);
    box-shadow: 0 10px 30px var(--main-shadow);
}

.xYJrj_kAhj:hover::before {
    opacity: 1;
}

.ktr__b {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.e_Ok6 {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 2;
    color: var(--main-text);
    transition: all 0.4s ease;
}

.Oxhygw0gv_lK6 {
    position: absolute;
    inset: 0;
    background: var(--main-highlight);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.xYJrj_kAhj:hover .e_Ok6 {
    transform: scale(1.2);
    color: var(--main-accent);
    filter: drop-shadow(0 0 10px var(--main-shadow));
}

.xYJrj_kAhj:hover .Oxhygw0gv_lK6 {
    opacity: 1;
}

.Ocs5op7 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--main-title);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.nUnkrkjwXaMd {
    font-size: 14px;
    line-height: 1.6;
    color: var(--main-text);
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Медиа-запросы для блока преимуществ */
@media (max-width: 1200px) {
    .Gw_5_xI7 {
        padding: 60px 0;
    }
    
    .yvmaxkj4KopG9 {
        padding: 0 40px;
    }
    
    .R17_m267fs {
        font-size: 32px;
    }
    
    .Qgmmq9z {
        font-size: 16px;
    }
    
    .E5zqG {
        gap: 20px;
    }
    
    .xYJrj_kAhj {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .E5zqG {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .R17_m267fs {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .Gw_5_xI7 {
        padding: 40px 0;
    }
    
    .yvmaxkj4KopG9 {
        padding: 0 20px;
    }
    
    .Ilmff {
        margin-bottom: 40px;
    }
    
    .R17_m267fs {
        font-size: 24px;
    }
    
    .Qgmmq9z {
        font-size: 14px;
    }
    
    .xYJrj_kAhj {
        padding: 20px;
    }
    
    .ktr__b {
        width: 60px;
        height: 60px;
    }
    
    .e_Ok6 {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .E5zqG {
        grid-template-columns: 1fr;
    }
    
    .R17_m267fs {
        font-size: 22px;
    }
    
    .Ocs5op7 {
        font-size: 18px;
    }
    
    .nUnkrkjwXaMd {
        font-size: 13px;
    }
}
.Qy6zmY5e {
  background: var(--footer-bg);
  padding: 30px 0;
}

.odFEcEZGgh {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ZwKruJwGgokG {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--footer-border);
  margin-bottom: 30px;
}

.th0k3 {
  width: 120px;
}

.th0k3 img {
  width: 100%;
  height: auto;
}

.ysr7_4zlgla {
  display: flex;
  gap: 40px;
}

.jm3__lgY7_Z3 {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.jm3__lgY7_Z3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--footer-title-underline);
  transition: width 0.3s ease;
}

.jm3__lgY7_Z3:hover {
  color: var(--footer-link-hover);
}

.jm3__lgY7_Z3:hover::after {
  width: 100%;
}

.IAIaufNkE {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dvt0i8bzoib5 {
  display: flex;
  gap: 10px;
}

.rnj9ba1 {
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--payment-option-bg);
  border-radius: 4px;
  padding: 4px;
}

.rnj9ba1 img {
  max-width: 100%;
  height: auto;
  filter: var(--payment-icon-filter);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.rnj9ba1:hover img {
  filter: var(--payment-icon-filter-hover);
  opacity: 1;
}

.hTdcbvFcaKr {
  display: flex;
  gap: 30px;
}

.DWZIzwd1w {
  color: var(--footer-legal-text);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.DWZIzwd1w:hover {
  color: var(--footer-link-hover);
}

.zlUa {
  color: var(--copyright-text);
  font-size: 12px;
}

@media (max-width: 768px) {
  .ZwKruJwGgokG {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .ysr7_4zlgla {
    flex-direction: column;
    gap: 15px;
  }

  .IAIaufNkE {
    flex-direction: column;
    gap: 20px;
  }

  .hTdcbvFcaKr {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}