: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);
}
.oEceuv4FjQ {
  background: var(--header-bg-gradient);
  padding: 20px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.oEceuv4FjQ::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--header-glow);
  animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.a0kkd3d {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.oyaccR {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 20px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.oyaccR::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.oyaccR:hover::before {
  transform: translateX(100%);
}

.oyaccR:hover {
  transform: var(--header-hover-transform);
  box-shadow: var(--header-logo-hover-shadow);
}

.oyaccR img {
  height: 40px;
  width: auto;
  filter: drop-shadow(var(--header-logo-shadow));
}

.zfqscnkD {
  display: flex;
  gap: 15px;
}

.z2ky {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.z2ky::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--header-shine);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.z2ky:hover::before {
  transform: translateX(100%);
}

.sy12M1r {
  background: var(--header-btn-solid-bg);
  color: var(--header-btn-solid-color);
  box-shadow: var(--header-btn-solid-shadow);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.sy12M1r:hover {
  transform: var(--header-hover-transform) scale(1.02);
  box-shadow: var(--header-btn-solid-hover-shadow);
}

.Y01vu {
  background: var(--header-btn-outline-bg);
  color: var(--header-btn-outline-color);
  border: var(--header-btn-outline-border);
  position: relative;
}

.Y01vu::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--header-shine);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.Y01vu:hover {
  background: var(--header-btn-outline-hover-bg);
  transform: var(--header-hover-transform);
}

.Y01vu:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .a0kkd3d {
      padding: 0 20px;
  }

  .oyaccR {
      padding: 6px 15px;
  }

  .oyaccR img {
      height: 35px;
  }

    .sy12M1r {
      display: none;
    }

  .z2ky {
      padding: 10px 25px;
      font-size: 13px;
  }
}
.ebr_ {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 0;
    overflow: hidden;
}

.ebr_::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/wn9Ee0FNy.jpg') center/cover no-repeat;
    filter: blur(8px) brightness(0.7);
    transform: scale(1.1);
    z-index: -1;
}

.ebr_::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
}

.kYPaCRmfjMLE5 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.Wniua8 {
    position: relative;
    text-align: left;
    max-width: 800px;
}

.vvvgSbH {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
}

.pztyU {
    width: 100%;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pztyU:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--main-accent);
}

.Og18 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ThyBkc2H2__J {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cSfoQnj_o2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dH_8qknBdluz5 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dH_8qknBdluz5:last-child {
    border-bottom: none;
}

.FsXdU9Zu {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-accent);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
}

.yt5ba7 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.bBmti2do5 {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.bBmti2do5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--main-accent);
    border-radius: 2px;
}

.Wd5j_xjphirX {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
}

.sGLhhncwpqop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.aTj62aa_X {
    text-align: left;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--main-accent);
    border-radius: 0 16px 16px 0;
    transition: all 0.3s ease;
}

.aTj62aa_X:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

.x_cmuV_uq {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1;
}

.aJdiamofq79 {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.smuCxe {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cLhB7j4Px {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    background: var(--main-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cLhB7j4Px:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 182, 239, 0.2);
}

.ezNz {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.ezNz:hover {
    border-color: var(--main-accent);
    background: rgba(0, 182, 239, 0.1);
}

.hero-image {
    position: relative;
    transform-style: preserve-3d;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--main-accent);
    border-radius: 20px;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .ebr_ {
        min-height: auto;
        padding: 30px 0;
    }

    .kYPaCRmfjMLE5 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bBmti2do5 {
        font-size: 48px;
    }

    .Wd5j_xjphirX {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .sGLhhncwpqop {
        margin-bottom: 25px;
    }

    .Wniua8 {
        text-align: center;
        margin: 0 auto;
    }

    .bBmti2do5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .Wd5j_xjphirX {
        margin-left: auto;
        margin-right: auto;
    }

    .sGLhhncwpqop {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .aTj62aa_X {
        text-align: center;
        border-left: none;
        border-bottom: 3px solid var(--main-accent);
        border-radius: 16px;
    }

    .smuCxe {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .vvvgSbH {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .pztyU {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .ebr_ {
        padding: 20px 0;
    }

    .kYPaCRmfjMLE5 {
        padding: 0 20px;
    }

    .bBmti2do5 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .Wd5j_xjphirX {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .sGLhhncwpqop {
        gap: 12px;
        margin-bottom: 20px;
    }

    .aTj62aa_X {
        padding: 16px;
    }

    .x_cmuV_uq {
        font-size: 32px;
    }

    .aJdiamofq79 {
        font-size: 12px;
    }

    .smuCxe {
        flex-direction: column;
        width: 100%;
    }

    .cLhB7j4Px {
        width: 100%;
        justify-content: center;
    }

    .vvvgSbH {
        flex-direction: column;
        gap: 16px;
    }

    .pztyU {
        width: 100%;
        padding: 20px;
    }

    .Og18 {
        font-size: 20px;
    }

    .ThyBkc2H2__J {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ebr_ {
        padding: 15px 0;
    }

   .sGLhhncwpqop {
       display: flex;
       flex-direction: column;
   }

    .bBmti2do5 {
        font-size: 32px;
    }

    .Wd5j_xjphirX {
        font-size: 14px;
    }

    .x_cmuV_uq {
        font-size: 28px;
    }
}
.AH0ywywx6 {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.AH0ywywx6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-glow-gradient);
}

.caIAiJx {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.caIAiJx h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--main-title);
    margin-bottom: 35px;
    text-transform: none;
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 30px;
    line-height: 1.2;
    text-shadow: 0 0 25px var(--main-shadow);
}

.caIAiJx h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: var(--main-title-gradient);
    border-radius: 3px;
    box-shadow: 0 0 20px var(--main-shadow);
}

.caIAiJx h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--main-hover);
    margin: 45px 0 30px;
    position: relative;
    display: inline-block;
    line-height: 1.3;
    padding-bottom: 12px;
}

.caIAiJx h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--main-title-gradient);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--main-shadow);
}

.caIAiJx h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--main-text);
    margin: 35px 0 20px;
    position: relative;
    line-height: 1.4;
    padding-left: 25px;
}

.caIAiJx h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--main-accent);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--main-shadow);
}

.caIAiJx img {
    width: 100%;
    margin: 20px 0;
}

.caIAiJx p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--main-text);
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.2px;
    position: relative;
}

.caIAiJx ul, .caIAiJx ol {
    margin: 35px 0;
    padding-left: 0;
    list-style: none;
}

.caIAiJx li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--main-text);
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
    font-weight: 400;
    transition: all 0.4s ease;
}

.caIAiJx li:hover {
    transform: translateX(10px);
    color: var(--main-hover);
}

.caIAiJx ul li::before {
    content: '•';
    color: var(--main-accent);
    position: absolute;
    left: 0;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 0 15px var(--main-shadow);
    transition: all 0.4s ease;
}

.caIAiJx ul li:hover::before {
    transform: scale(1.3);
    text-shadow: 0 0 25px var(--main-shadow);
}

.caIAiJx ol {
    counter-reset: item;
}

.caIAiJx ol li {
    counter-increment: item;
}

.caIAiJx ol li::before {
    content: counter(item);
    color: var(--main-accent);
    position: absolute;
    left: 0;
    font-weight: 600;
    font-size: 16px;
    background: var(--main-highlight);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px var(--main-shadow);
}

.caIAiJx ol li:hover::before {
    background: var(--main-highlight);
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 25px var(--main-shadow);
}

.caIAiJx a {
    color: var(--main-accent);
    text-decoration: none;
    transition: all 0.6s ease;
    position: relative;
    font-weight: 600;
    padding: 0 4px;
}

.caIAiJx 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);
}

.caIAiJx a:hover {
    color: var(--main-hover);
}

.caIAiJx 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) {
    .AH0ywywx6 {
        padding: 160px 0;
    }
}

@media (max-width: 1200px) {
    .caIAiJx {
        padding: 0 60px;
    }

    .caIAiJx h1 {
        font-size: 36px;
        margin-bottom: 30px;
        padding-left: 25px;
    }

    .caIAiJx h2 {
        font-size: 28px;
        margin: 40px 0 25px;
    }

    .caIAiJx h3 {
        font-size: 22px;
        margin: 30px 0 15px;
        padding-left: 20px;
    }

    .caIAiJx p, .caIAiJx li {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .AH0ywywx6 {
        padding: 100px 0;
    }

    .caIAiJx {
        padding: 0 40px;
    }

    .caIAiJx h1 {
        font-size: 32px;
        margin-bottom: 25px;
        padding-left: 20px;
    }

    .caIAiJx h2 {
        font-size: 26px;
        margin: 35px 0 20px;
    }

    .caIAiJx h3 {
        font-size: 20px;
        margin: 25px 0 15px;
        padding-left: 15px;
    }

    .caIAiJx p, .caIAiJx li {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .AH0ywywx6 {
        padding: 80px 0;
    }

    .caIAiJx {
        padding: 0 30px;
    }

    .caIAiJx h1 {
        font-size: 28px;
        margin-bottom: 20px;
        padding-left: 15px;
    }

    .caIAiJx h2 {
        font-size: 24px;
        margin: 30px 0 15px;
    }

    .caIAiJx h3 {
        font-size: 18px;
        margin: 20px 0 12px;
        padding-left: 12px;
    }

    .caIAiJx p, .caIAiJx li {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .AH0ywywx6 {
        padding: 60px 0;
    }

    .caIAiJx {
        padding: 0 20px;
    }

    .caIAiJx h1 {
        font-size: 26px;
        margin-bottom: 15px;
        padding-left: 12px;
    }

    .caIAiJx h2 {
        font-size: 22px;
        margin: 25px 0 12px;
    }

    .caIAiJx h3 {
        font-size: 16px;
        margin: 15px 0 10px;
        padding-left: 10px;
    }

    .caIAiJx p, .caIAiJx li {
        font-size: 11px;
    }
}
.s_zDm {
    position: relative;
    padding: 100px 0;
    background: var(--color-background);
    overflow: hidden;
}
.s_zDm::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--main-glow-gradient);
    opacity: 0.1;
    z-index: 1;
}
.Qqctbbum {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.L_xwqn_tzzr {
    max-width: 500px;
}
.Cfr_oow2e6M {
    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);
}
.k2_6Zxmwejyi {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--main-title);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 25px var(--main-shadow);
}
.p5eh1 {
    font-size: 18px;
    color: var(--main-text);
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
}
.H4biq8az8 {
    display: flex;
    gap: 20px;
}
.vpng74 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--main-accent);
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.vpng74:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--main-shadow);
}
.gkgRi3 {
    width: 24px;
    height: 24px;
}
.BrKqyjqPnK {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.m1Ig__m {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px var(--main-shadow));
}
.ZkBt5 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--main-accent);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: 1;
}
@media (max-width: 992px) {
    .s_zDm {
        padding: 60px 0;
    }
    .Qqctbbum {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .L_xwqn_tzzr {
        max-width: 100%;
    }
    .H4biq8az8 {
        justify-content: center;
    }
    .k2_6Zxmwejyi {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .s_zDm {
        padding: 40px 0;
    }
    .Qqctbbum {
        padding: 0 20px;
    }
    .k2_6Zxmwejyi {
        font-size: 28px;
    }
    .p5eh1 {
        font-size: 16px;
    }
    .H4biq8az8 {
        flex-direction: column;
    }
    .vpng74 {
        width: 100%;
        justify-content: center;
    }
}
.Kwltavxm8 {
  background: var(--footer-bg-gradient);
  padding: 40px 0 30px;
}

.efNW {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.Wqlc3G3ZF5 {
  padding: 0;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--footer-text);
  margin-bottom: 15px;
}

.Brxfm7qgcz03 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--footer-title);
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.Brxfm7qgcz03::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--footer-title-underline);
}

.s_lc5z0 {
  color: var(--footer-text);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.s_lc5z0:hover {
  color: var(--footer-link-hover);
}

.yecc_b0Aspat {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid var(--footer-border);
  border-bottom: 1px solid var(--footer-border);
}

.L2zm15inW6 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--footer-title);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.btn2 {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.U8y_2n649 {
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--payment-option-bg);
  border-radius: 6px;
  padding: 6px;
  transition: all 0.3s ease;
  border: 1px solid var(--payment-option-border);
}

.U8y_2n649:hover {
  background: var(--payment-option-bg-hover);
  transform: translateY(-3px);
  box-shadow: var(--payment-option-shadow);
}

.oohvn {
  max-width: 100%;
  height: auto;
  filter: var(--payment-icon-filter);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.U8y_2n649:hover .oohvn {
  filter: var(--payment-icon-filter-hover);
  opacity: 1;
}

.t9skqY_6 {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: var(--footer-legal-text);
}

@media (max-width: 768px) {
  .efNW {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .U8y_2n649 {
    width: 50px;
    height: 35px;
  }
}