/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GL7: force 361-480px to use exactly the same styles as <=360px */
@media (min-width: 361px) and (max-width: 480px) {
    .gl7-section { padding: 50px 10px 0 10px; display: flex; align-items: center; justify-content: center; min-height: 120vh; overflow: visible; margin-bottom: 0; }
    .gl7-form { margin-bottom: 10px; width: 100%; max-width: 320px; margin: 0 auto; }
    .gl7-mobile-content { margin-top: 56px; order: 2; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 20px; }
    .gl7-mobile-questionary-image { position: relative; z-index: 2; }
    .gl7-mobile-logo-image { position: relative; z-index: 1; }
    .gl7-container { gap: 25px; width: 100%; max-width: 350px; margin: 0 auto; align-items: center; }
    .gl7-left { display: none; }
    .gl7-right { width: 100%; display: flex; justify-content: center; }
    .gl7-mobile-title { font-size: 24px; line-height: 26px; text-align: center; margin: 0; color: #ffffff; font-weight: 700; }
    .gl7-mobile-description { display: flex; flex-direction: column; gap: 10px; text-align: center; }
    .gl7-mobile-description p { font-size: 12px; line-height: 18px; text-align: center; color: #d9d9d9; margin: 0; }
    .gl7-mobile-logo-container { display: flex; flex-direction: row; align-items: flex-end; justify-content: center; gap: 0; margin-top: 12px; }
    .gl7-mobile-image { position: relative; z-index: 2; margin-right: -20px; width: 100%; max-width: 200px; height: auto; margin-left: -24px; }
    .gl7-mobile-logo { position: relative; z-index: 1; width: 120px; height: auto; order: 2; }
    .gl7-mobile-logo-image { width: 120px; height: auto; object-fit: contain; }
    .gl7-mobile-questionary-image { width: 100%; height: auto; object-fit: contain; }
    .gl7-input { height: 42px; padding: 10px 14px; font-size: 16px; }
    .gl7-radio-group { gap: 12px; }
    .gl7-radio-custom { width: 16px; height: 16px; }
    .gl7-radio input[type="radio"]:checked + .gl7-radio-custom::after { width: 5px; height: 5px; }
    .gl7-radio-text { font-size: 12px; }
    .gl7-checkbox-custom { width: 16px; height: 16px; }
    .gl7-checkbox-text { font-size: 11px; line-height: 15px; }
    .gl7-button { max-width: 260px; height: 42px; }
    .gl7-button-text { font-size: 12px; }
}

/* Smooth scroll for all pages */
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Improve touch targets */
    button, a, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better scrolling on mobile */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px;
    }
    
    /* Smooth transitions for mobile */
    * {
        transition: all 0.2s ease;
    }
    
    /* Better focus states for mobile */
    button:focus, a:focus, input:focus, select:focus, textarea:focus {
        outline: 2px solid #f7931e;
        outline-offset: 2px;
    }
    
    /* Improve text readability */
    p, span, div {
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Extra small screens (up to 360px) */
@media (max-width: 360px) {
    body {
        font-size: 14px;
    }
    
    .header {
        padding: 8px 10px;
        height: 55px;
    }
    
    .header-container {
        height: 35px;
        justify-content: center !important;
    }
    
    .header-left {
        display: none !important;
    }
    
    .header-right {
        display: none !important;
    }
    
    .header-center {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .header-center .logo-image {
        height: 30px;
        width: 70px;
    }
    
    .join-button-container {
        display: none !important;
    }
    
    .hero-section {
        margin-top: 0;
        padding-top: 55px;
        min-height: 250px;
    }
    
    .hero-button {
        width: 220px;
        height: 45px;
    }
    
    .hero-button-text {
        font-size: 13px;
    }
}

/* Base Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Image Responsive Styles */
.hero-slide .hero-image.desktop-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
}

.hero-slide .hero-image.mobile-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero-slide .hero-image.desktop-image {
        display: none !important;
    }
    
    .hero-slide .hero-image.mobile-image {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    height: 74px;
    padding: 15px 337px;
    margin: 0;
}

/* Desktop and Tablet Styles */
@media (min-width: 769px) {
    .header-left {
        display: flex !important;
        align-items: center;
    }
    
    .header-right {
        display: flex !important;
        align-items: center;
        gap: 20px;
    }
    
    .join-button-container {
        display: block !important;
    }
    
    .header-center {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* Mobile Header Styles */
@media (max-width: 1200px) {
    .header {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 60px;
        padding: 10px 15px;
    }
    
    .header-container {
        height: 40px;
        justify-content: center !important;
    }
    
    .header-left {
        display: none !important;
    }
    
    .header-center {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        max-width: none !important;
    }
    
    .header-center .logo {
        cursor: pointer !important;
    }
    
    .header-center .logo a {
        display: block !important;
        text-decoration: none !important;
        width: 100%;
        height: 100%;
    }
    
    .header-center .logo-image {
        height: 35px;
        width: 80px;
        transition: opacity 0.3s ease;
    }
    
    .header-center .logo:hover .logo-image {
        opacity: 0.8;
    }
    
    .header-right {
        display: none !important;
    }
    
    .join-button-container {
        display: none !important;
    }
}

.header-container {
    max-width: 1246px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    gap: 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 415.33px;
    max-width: 415.33px;
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 415.33px;
    max-width: 415.33px;
}

.header-center .logo {
    cursor: pointer;
}

.header-center .logo a {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.header-center .logo-image {
    height: 44px;
    width: 97px;
    transition: opacity 0.3s ease;
}

.header-center .logo:hover .logo-image {
    opacity: 0.8;
}

/* Menu label styles removed */

.header-center .nav-list {
    display: none;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f7931e;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 415.32px;
    max-width: 415.32px;
    gap: 0;
}

.language-switcher {
    display: flex;
    align-items: center;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    width: 80px;
    height: 40px;
    position: relative;
    text-decoration: none;
    min-height: 40px;
    overflow: visible;
}

.lang-button:hover {
    background: transparent; /* Убираем hover для активного языка */
}

.lang-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5); /* Полупрозрачный черный фон */
    border-radius: 5px;
    padding: 8px 0;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-dropdown:hover .lang-menu,
.lang-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown:hover .lang-arrow::before {
    transform: rotate(225deg); /* V-образная стрелка вверх при hover */
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 10px;
    cursor: pointer;
    transition: background 0.3s ease;
    gap: 6px;
}

.lang-option:hover {
    background: #f7931e; /* Оранжевый при hover */
}

.lang-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 12px;
    margin-right: 6px;
    padding: 0 6px 0 0;
}

.lang-icon {
    width: 19px;
    height: 12px;
}

.lang-text {
    color: #ffffff;
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    margin-right: 4px;
    cursor: pointer;
}

.lang-button:hover .lang-text {
    color: #ffffff;
}

.lang-arrow {
    position: absolute;
    width: 7px;
    height: 7px;
    right: 2px; /* Ещё правее */
    top: 12px; /* Привязываем к верхней границе UA */
    flex: none;
    order: 2;
    flex-grow: 0;
    z-index: 2;
}

.lang-arrow::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    top: 3px; /* Смещаем вниз от верхней границы контейнера */
    left: 0.5px; /* Центрируем по горизонтали */
    transform: rotate(45deg); /* V-образная стрелка вниз */
    transition: transform 0.3s ease;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform-origin: 5px 5px; /* Ось вращения смещена ниже на 50% */
}

.join-button-container {
    position: relative;
    width: 270px;
    height: 42px;
    padding: 1px;
    margin-right: 24px;
}

.join-button-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    mask: url('assets/buttons/button-background.svg') no-repeat;
    mask-size: 270px 42px;
    transition: background 0.3s ease;
}

.join-button-container:hover .join-button-bg {
    background: #f7931e;
}

.join-button {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 268px;
    height: 40px;
    background: #000000;
    color: #ffffff;
    padding: 13px 57px;
    text-decoration: none;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    mask: url('assets/buttons/button-link.svg') no-repeat;
    mask-size: 268px 40px;
    transition: color 0.3s ease;
}

.join-button-container:hover .join-button {
    color: #f7931e;
}

/* Menu button styles removed */

/* Menu styles completely removed */

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 80px;
    padding-top: 74px;
    height: auto;
    min-height: 400px;
    max-height: calc(100vh - 74px);
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 0;
        margin-bottom: 40px;
        padding-top: 60px;
        min-height: 300px;
        max-height: calc(100vh - 60px);
    }
    
    .hero-content {
        bottom: 8%;
        transform: translate(0, 0);
        padding: 0 15px;
    }
    
    .hero-button {
        width: 250px;
        height: 50px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }
    
    .hero-button:active {
        transform: scale(0.95);
    }
    
    .hero-button-text {
        font-size: 14px;
    }
    
    
    /* Optimize hero images for mobile */
    .hero-slide img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
    
    /* Improve hero text readability */
    .hero-content {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        gap: 15px;
    }
    
}

/* GL2 Section Styles */
@keyframes glow-pulse {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes button-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes button-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(64, 193, 205, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(64, 193, 205, 0.6);
    }
}

.gl2-section {
    background-color: #000000;
    padding: 80px 0;
    position: relative;
}

.gl2-container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    gap: 0;
    align-items: center;
}

.gl2-left {
    flex: 0 0 529.16px;
    max-width: 529.16px;
}

.gl2-content {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.gl2-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gl2-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 36.4px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

.gl2-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.75px;
    line-height: 24px;
    color: #d9d9d9;
    margin: 0;
}

.gl2-button-container {
    position: relative;
    min-width: 271px;
}

.gl2-button {
    position: relative;
    display: inline-block;
    width: 271px;
    height: 53px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gl2-button-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.gl2-button-svg {
    animation: button-pulse 3s ease-in-out infinite;
}

.gl2-button:hover .gl2-button-svg {
    content: url('assets/buttons/blue_hover=true.svg');
    animation: button-pulse 2s ease-in-out infinite;
}

.gl2-right {
    flex: 0 0 740.83px;
    max-width: 740.83px;
}

.gl2-border {
    position: relative;
    border: 1px solid #5c5c5c;
    padding: 45.195px 31px 44px;
    background-color: transparent;
}

.gl2-border-content {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.gl2-border-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 36.4px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
    width: 100%;
}

.gl2-contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    width: 678.83px;
    height: 302px;
}

.gl2-contact-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 24px 12px 0;
}

.gl2-contact-item-1 {
    grid-column: 1;
    grid-row: 1;
}

.gl2-contact-item-2 {
    grid-column: 2;
    grid-row: 1;
}

.gl2-contact-item-3 {
    grid-column: 3;
    grid-row: 1;
}

.gl2-contact-item-4 {
    grid-column: 1;
    grid-row: 2;
}

.gl2-contact-city {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #f7931e;
    text-transform: uppercase;
    margin: 0;
}

.gl2-contact-address {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.5px;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
}

.gl2-contact-hours {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.25px;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
}

.gl2-contact-info {
    display: flex;
    gap: 0;
    width: 678.83px;
}

.gl2-info-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 12px;
}

.gl2-info-label {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

.gl2-info-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 17.813px;
    line-height: 20px;
    color: #f7931e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gl2-info-link:hover {
    color: #ffffff;
}

.gl2-border-corner {
    position: absolute;
    width: 94px;
    height: 94px;
}

.gl2-border-corner-top-left {
    top: -4px;
    left: -4px;
}

.gl2-border-corner-bottom-right {
    bottom: -4px;
    right: -4px;
}

.gl2-corner-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid #f7931e;
    pointer-events: none;
}

.gl2-border-corner-top-left .gl2-corner-border {
    border-right: none;
    border-bottom: none;
}

.gl2-border-corner-bottom-right .gl2-corner-border {
    border-left: none;
    border-top: none;
}

.gl2-corner-image {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 188px;
    height: 188px;
    background: url('assets/gl2/effectImage.svg') no-repeat;
    background-size: 100% 100%;
    background-position: top left;
    animation: glow-pulse 4s ease-in-out infinite;
}

.gl2-corner-image-rotated {
    position: absolute;
    top: -98px;
    left: -98px;
    width: 188px;
    height: 188px;
    background: url('assets/gl2/effectImage2.svg') no-repeat;
    background-size: 100% 100%;
    background-position: top left;
    transform: rotate(0deg);
    animation: glow-pulse 4s ease-in-out infinite;
}

/* Responsive Design for GL2 Section */
@media (max-width: 1200px) {
    .gl2-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .gl2-left,
    .gl2-right {
        flex: none;
        max-width: 100%;
    }
    
    .gl2-contacts-grid {
        width: 100%;
        height: auto;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }
    
    .gl2-contact-item-3 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .gl2-contact-item-4 {
        grid-column: 2;
        grid-row: 2;
    }
    
    .gl2-contact-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .gl2-section {
        padding: 60px 0;
    }
    
    .gl2-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 40px;
    }
    
    .gl2-left,
    .gl2-right {
        flex: none;
        max-width: 100%;
    }
    
    .gl2-content {
        gap: 30px;
    }
    
    .gl2-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .gl2-subtitle {
        font-size: 14px;
        line-height: 22px;
    }
    
    .gl2-button-container {
        min-width: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .gl2-button {
        width: 250px;
        height: 48px;
    }
    
    .gl2-border-title {
        font-size: 24px;
        line-height: 32px;
        text-align: left;
    }
    
    .gl2-contacts-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 25px;
        width: 100%;
        height: auto;
    }
    
    .gl2-contact-item-1,
    .gl2-contact-item-2,
    .gl2-contact-item-3,
    .gl2-contact-item-4 {
        grid-column: 1;
        padding: 20px 0 0;
    }
    
    .gl2-contact-item-1 {
        grid-row: 1;
    }
    
    .gl2-contact-item-2 {
        grid-row: 2;
    }
    
    .gl2-contact-item-3 {
        grid-row: 3;
    }
    
    .gl2-contact-item-4 {
        grid-row: 4;
    }
    
    .gl2-contact-city {
        font-size: 18px;
        line-height: 26px;
    }
    
    .gl2-contact-address,
    .gl2-contact-hours {
        font-size: 13px;
        line-height: 20px;
    }
    
    .gl2-contact-info {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
    
    .gl2-info-label {
        font-size: 18px;
        line-height: 18px;
    }
    
    .gl2-info-link {
        font-size: 16px;
        line-height: 18px;
    }
    
    .gl2-border {
        padding: 30px 20px;
    }
    
    .gl2-border-content {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .gl2-section {
        padding: 40px 0;
    }
    
    .gl2-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .gl2-content {
        gap: 25px;
    }
    
    .gl2-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .gl2-subtitle {
        font-size: 13px;
        line-height: 20px;
    }
    
    .gl2-button-container {
        min-width: 220px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .gl2-button {
        width: 220px;
        height: 45px;
    }
    
    .gl2-border-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .gl2-contacts-grid {
        gap: 20px;
    }
    
    .gl2-contact-item-1,
    .gl2-contact-item-2,
    .gl2-contact-item-3,
    .gl2-contact-item-4 {
        padding: 15px 0 0;
    }
    
    .gl2-contact-city {
        font-size: 16px;
        line-height: 24px;
    }
    
    .gl2-contact-address,
    .gl2-contact-hours {
        font-size: 12px;
        line-height: 18px;
    }
    
    .gl2-contact-info {
        gap: 20px;
    }
    
    .gl2-info-label {
        font-size: 16px;
        line-height: 16px;
    }
    
    .gl2-info-link {
        font-size: 14px;
        line-height: 16px;
    }
    
    .gl2-border {
        padding: 25px 15px;
    }
    
    .gl2-border-content {
        gap: 30px;
    }
}

/* GL3 Section Styles */
.gl3-section {
    background-color: #000000;
    padding: 165px 0 0;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.gl3-container {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    height: 100%;
}

.gl3-background-left {
    position: absolute;
    left: -141.86px;
    top: 65px;
    width: 346px;
    height: 465px;
    z-index: 1;
}

.gl3-background-right {
    position: absolute;
    left: 737.3px;
    top: 0;
    width: 561px;
    height: 300px;
    z-index: 1;
}

.gl3-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl3-logo {
    position: absolute;
    left: 1052px;
    top: 211.06px;
    width: 130px;
    height: 218.94px;
    z-index: 3;
}

.gl3-logo-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gl3-logo-single {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gl3-content {
    position: absolute;
    left: 175px;
    top: 165px;
    z-index: 2;
    width: 780px;
    height: 275px;
}

.gl3-heading {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gl3-title-line-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 780px;
    height: 75px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 88px;
    line-height: 74.8px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    text-shadow: #f7931e 0px 4px 200px;
    text-align: left;
}

.gl3-title-line-2 {
    position: absolute;
    top: 100px;
    left: 0;
    width: 780px;
    height: 75px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    font-size: 88px;
    line-height: 74.8px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    text-shadow: #f7931e 0px 4px 200px;
    text-align: right;
}

.gl3-title-line-3 {
    position: absolute;
    top: 200px;
    left: 0;
    width: 780px;
    height: 75px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 88px;
    line-height: 74.8px;
    color: #f7931e;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

/* Responsive Design for GL3 Section */
@media (max-width: 1200px) {
    .gl3-container {
        padding: 0 50px;
    }
    
    .gl3-background-left {
        left: -50px;
        width: 250px;
        height: 350px;
    }
    
    .gl3-background-right {
        right: -50px;
        width: 400px;
        height: 250px;
    }
    
    .gl3-logo {
        right: -30px;
        width: 100px;
        height: 170px;
    }
    
    .gl3-title-line-1,
    .gl3-title-line-2,
    .gl3-title-line-3 {
        font-size: 60px;
        line-height: 50px;
    }
}

@media (max-width: 768px) {
    .gl3-section {
        padding: 80px 0 0;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .gl3-container {
        padding: 0 20px;
    }
    
    .gl3-background-left,
    .gl3-background-right {
        display: none;
    }
    
    .gl3-logo {
        position: static;
        margin: 30px auto 0;
        width: 60px;
        height: 100px;
    }
    
    .gl3-content {
        position: static;
        text-align: center;
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
    
    .gl3-title-line-1,
    .gl3-title-line-2,
    .gl3-title-line-3 {
        position: static;
        font-size: 32px;
        line-height: 28px;
        text-align: center;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
    
    .gl3-heading {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .gl3-section {
        padding: 60px 0 0;
        padding-bottom: 60px;
    }
    
    .gl3-container {
        padding: 0 15px;
    }
    
    .gl3-logo {
        width: 50px;
        height: 85px;
    }
    
    .gl3-title-line-1,
    .gl3-title-line-2,
    .gl3-title-line-3 {
        font-size: 28px;
        line-height: 24px;
    }
}

.hero-section:has(.hero-slide.active) {
    height: auto;
}

.hero-container {
    position: relative;
    width: 100%;
    height: auto;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.hero-slide.active {
    position: relative;
    height: auto;
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f7931e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-slide.active .hero-background {
    position: relative;
    height: auto;
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Override for responsive images */
.hero-slide .hero-image.desktop-image,
.hero-slide .hero-image.mobile-image {
    height: 100%;
}

.hero-slide.active .hero-image {
    height: auto;
}

/* Затемнение убрано */

.hero-content {
    position: absolute;
    bottom: 12%; /* 10% от низа */
    left: 50%;
    transform: translate(12%, 0); /* Слева от середины */
    z-index: 3;
    text-align: center;
    max-width: 1270px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 529px;
    margin-left: auto;
    margin-right: 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-button {
    position: relative;
    display: inline-block;
    width: 275px;
    height: 57px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-button-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.hero-button-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
    z-index: 10;
}

.hero-button:hover .hero-button-svg {
    content: url('assets/buttons/hero_button_hover=true.svg');
}

.hero-button:hover .hero-button-text {
    color: #000000;
}

.hero-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
    z-index: 3;
}

.pagination-dot {
    width: 20px;
    height: 20px;
    border: 2px solid #000000;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.pagination-dot.active {
    border-color: #f7931e;
    opacity: 1;
}

.pagination-dot:hover {
    opacity: 1;
}

/* Contacts Section */
.contacts-section {
    padding: 80px 0;
    background: #000000;
}

.contacts-container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 20px;
}

.contacts-content {
    border: 1px solid #5c5c5c;
    padding: 51px 89px;
    position: relative;
}

.contacts-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    text-transform: uppercase;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 60px;
}

.contact-item {
    padding: 24px 12px;
    text-align: left;
}

.contact-city {
    font-size: 24px;
    font-weight: 700;
    color: #f7931e;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-address {
    font-size: 16px;
    color: #d9d9d9;
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-hours {
    font-size: 14px;
    color: #999;
}

.contacts-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-item {
    text-align: left;
}

.contact-info-label {
    font-size: 16px;
    color: #d9d9d9;
    margin-bottom: 10px;
}

.contact-info-link {
    font-size: 18px;
    color: #f7931e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: #e8831a;
}

/* Intensive Section */
.intensive-section {
    padding: 80px 0;
    position: relative;
    background: #000000;
}

.intensive-container {
    max-width: 1246px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.intensive-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 51px 89px;
    border: 1px solid #5c5c5c;
}

.intensive-text {
    max-width: 542px;
}

.intensive-badge {
    font-size: 18.75px;
    font-weight: 600;
    color: #f7931e;
    margin-bottom: 44px;
    text-transform: uppercase;
}

.intensive-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 36.4px;
    color: #ffffff;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.intensive-description {
    font-size: 18.281px;
    line-height: 30px;
    color: #d9d9d9;
    margin-bottom: 45px;
}

.intensive-actions {
    display: flex;
    flex-direction: column;
    gap: 14.5px;
}

.intensive-button {
    display: inline-block;
    background: #40c1cd;
    color: #000000;
    padding: 17px 65px;
    text-decoration: none;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: center;
    width: 270px;
}

.intensive-button:hover {
    background: #3ab0bc;
    transform: translateY(-2px);
}

.intensive-link {
    margin-top: 14.5px;
}


.intensive-image {
    position: absolute;
    right: 89px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.order-image {
    width: 422px;
    height: 463px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.order-image:hover {
    transform: scale(1.02);
}

.intensive-details {
    max-width: 310px;
    margin-left: 55.66px;
}

.intensive-detail-text {
    font-size: 14.875px;
    line-height: 24px;
    color: #d9d9d9;
    margin-bottom: 20px;
}

.intensive-note {
    font-size: 15.125px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 700;
}

.intensive-border-left {
    position: absolute;
    left: -4px;
    bottom: -4px;
    z-index: 1;
}

.intensive-border-right {
    position: absolute;
    right: -4px;
    top: -4px;
    z-index: 1;
}

.border-image {
    width: 188px;
    height: 188px;
    object-fit: cover;
}

/* Main Title Section */
.main-title-section {
    padding: 165px 0 80px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.main-title-container {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 175px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 440px;
}

.main-title-background-left {
    position: absolute;
    left: -141.86px;
    top: 65px;
    z-index: 1;
}

.soldier-image {
    width: 346px;
    height: 465px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.soldier-image:hover {
    transform: scale(1.02);
}

.main-title-background-right {
    position: absolute;
    right: -168.3px;
    top: 0;
    z-index: 1;
}

.background-image {
    width: 561px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.background-image:hover {
    transform: scale(1.02);
}

.main-title-logo {
    position: absolute;
    bottom: 10px;
    right: -52px;
    z-index: 2;
}

.logo-image {
    width: 130px;
    height: 219px;
    object-fit: contain;
}

.main-title-text {
    text-align: left;
    z-index: 2;
    max-width: 780px;
}

.main-title-line-1 {
    font-size: 88px;
    font-weight: 700;
    line-height: 74.8px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0px 4px 200px #f7931e;
    margin-bottom: 25px;
}

.main-title-line-2 {
    font-size: 88px;
    font-weight: 300;
    line-height: 74.8px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0px 4px 200px #f7931e;
    text-align: right;
    margin-bottom: 25px;
}

.main-title-line-3 {
    font-size: 88px;
    font-weight: 700;
    line-height: 74.8px;
    color: #f7931e;
    text-transform: uppercase;
}

/* Values Section */
.values-section {
    padding: 169px 0 80px;
    background: #000000;
    position: relative;
}

.values-container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 20px;
}

.values-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 36.4px;
    color: #d9d9d9;
    text-align: center;
    margin-bottom: 70px;
    text-transform: uppercase;
    letter-spacing: 3.92px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.value-card {
    padding: 0 12px;
    margin-bottom: 30px;
}

.value-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.value-card:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #f7931e;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.value-description {
    font-size: 14.75px;
    line-height: 24px;
    color: #d9d9d9;
}

/* Application Form Section */
.application-section {
    padding: 80px 0;
    background: #111111;
}

.application-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.application-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.application-subtitle {
    font-size: 18px;
    color: #d9d9d9;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

.application-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #333;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #d9d9d9;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: #f7931e;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #d9d9d9;
}

.radio-label input[type="radio"] {
    accent-color: #f7931e;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #d9d9d9;
}

.checkbox-label input[type="checkbox"] {
    accent-color: #f7931e;
}

.form-note {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.privacy-note {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin: 20px 0;
}

.submit-button {
    width: 100%;
    background: #f7931e;
    color: #000000;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #e8831a;
    transform: translateY(-2px);
}

.field-error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
}

.form-group input.error {
    border-color: #ff4444;
}

.form-message {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    color: #f44336;
}

.form-message h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.form-message p {
    margin: 0;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #000000;
}

.faq-container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.faq-left {
    padding: 0 12px;
}

.faq-logo {
    margin-bottom: 39px;
}

.faq-logo-image {
    width: 79px;
    height: 128px;
    object-fit: contain;
}

.faq-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 36.4px;
    color: #ffffff;
    margin-bottom: 14.5px;
    text-transform: uppercase;
}

.faq-subtitle {
    font-size: 15px;
    line-height: 24px;
    color: #d9d9d9;
    margin-bottom: 14.5px;
}

.faq-link {
    color: #f7931e;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #e8831a;
}

.faq-button {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 17px 65px;
    text-decoration: none;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: center;
    width: 270px;
    margin-top: 14.5px;
}

.faq-button:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.faq-right {
    padding: 10px 12px 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #000000;
    border: 1px solid #d9d9d9;
    border-bottom: none;
}

.faq-item:last-child {
    border-bottom: 1px solid #d9d9d9;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(247, 147, 30, 0.1);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #d9d9d9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    color: #d9d9d9;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #000000;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 15px 30px;
    font-size: 16px;
    line-height: 24px;
    color: #d9d9d9;
    margin-bottom: 15px;
}

.faq-answer ul {
    padding: 0 15px 30px;
    margin-left: 20px;
}

.faq-answer li {
    font-size: 16px;
    line-height: 24px;
    color: #d9d9d9;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background-color: #010101;
    color: #ffffff;
    padding: 29px 304.5px 45px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    margin-top: 0px;
    clear: both;
    border-top: 1px solid rgba(247, 147, 30, 0.35);
}

.footer-container {
    display: grid;
    grid-template-columns: 162px 199px 261px 544px 145px;
    grid-template-rows: 16px 180px;
    gap: 0;
    min-height: 196px;
    max-width: 1311px;
    margin: 0 auto;
    position: relative;
}

.footer-logo {
    grid-column: 1;
    grid-row: 2;
    padding: 0 32.5px;
    display: flex;
    align-items: flex-start;
}

.footer-logo-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
}

.footer-logo-image {
    height: 44px;
    width: 97px;
}

.footer-links {
    display: grid;
    grid-column: 2 / 4;
    grid-row: 2;
    grid-template-columns: 199px 261px;
    gap: 0;
}

.footer-column {
    padding: 0 32.5px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-list li {
    margin: 0;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.75px;
    line-height: 24px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Specific font sizes for different links according to Figma */
.footer-list li:nth-child(1) .footer-link {
    font-size: 14.75px;
}

.footer-list li:nth-child(2) .footer-link {
    font-size: 14.5px;
}

.footer-list li:nth-child(3) .footer-link {
    font-size: 14.875px;
}

.footer-list li:nth-child(4) .footer-link {
    font-size: 14.875px;
}

.footer-list li:nth-child(5) .footer-link {
    font-size: 15px;
}

.footer-link:hover {
    color: #f7931e;
}

.footer-contact-info {
    grid-column: 4;
    grid-row: 2;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-contact-row {
    display: flex;
    gap: 40px;
    width: 502.89px;
    height: 74px;
    align-items: center;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 9.5px;
    align-items: center;
    flex: 1;
    padding: 16px 12px 0;
    height: 58px;
}

.footer-contact:nth-child(1) {
    flex: 1.2;
    min-width: 180px;
}

.footer-contact:nth-child(2) {
    flex: 1.3;
    min-width: 200px;
}

.footer-contact-label {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #f7931e;
    text-transform: uppercase;
    margin: 0;
}

.footer-contact-link {
    color: #ffffff;
    text-decoration: underline;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13.75px;
    line-height: 24px;
    transition: color 0.3s ease;
}

/* Specific font sizes for contact links according to Figma */
.footer-contact:nth-child(1) .footer-contact-link {
    font-size: 13.75px;
}

.footer-contact:nth-child(2) .footer-contact-link {
    font-size: 14.25px;
}

.footer-contact-link:hover {
    color: #f7931e;
}

.footer-social {
    display: flex;
    padding: 30px 0;
    gap: 24px;
    align-items: flex-start;
    width: 479px;
    height: 40px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 5px;
}

.social-link:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-link img {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.social-link:hover img {
    filter: brightness(1.2);
}

.footer-language {
    grid-column: 5;
    grid-row: 2;
    padding: 0 32.5px;
    display: flex;
    align-items: flex-start;
}


/* Footer Responsive Design */
@media (max-width: 1200px) {
    .footer {
        padding: 29px 20px 45px;
    }
    
    .footer-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
    }
    
    .footer-links {
        grid-column: 1;
        grid-row: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        justify-self: center;
    }
    
    .footer-contact-info {
        grid-column: 1;
        grid-row: 3;
        align-items: center;
    }
    
    .footer-contact-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }
    
    .footer-social {
        justify-content: center;
        width: 100%;
    }
    
    .footer-language {
        grid-column: 1;
        grid-row: 4;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 20px 15px 30px;
    }
    
    .footer-container {
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-contact-row {
        gap: 15px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .footer-logo-image {
        height: 35px;
        width: 80px;
    }
    
    .footer-contact-label {
        font-size: 14px;
    }
    
    .footer-contact-link {
        font-size: 12px;
    }
    
    .footer-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 15px 10px 20px;
    }
    
    .footer-container {
        gap: 15px;
    }
    
    .footer-logo-image {
        height: 30px;
        width: 70px;
    }
    
    .footer-contact-label {
        font-size: 12px;
    }
    
    .footer-contact-link {
        font-size: 11px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link img {
        width: 35px;
        height: 35px;
    }
}

/* GL7 Responsive Design */
@media (max-width: 1400px) {
    .gl7-section {
        padding: 100px 0px 0 0px;
    }
}

@media (max-width: 1200px) {
    .gl7-section {
        padding: 100px 0px 0 0px;
    }
    
    .gl7-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .gl7-left {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    
    .gl7-right {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    
    .gl7-logo-container {
        margin-left: 0;
        margin-top: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .gl7-logo {
        position: relative;
        bottom: auto;
        right: auto;
    }
    
    .gl7-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 490/557;
    }
}

@media (max-width: 768px) {
    .gl7-section {
        padding: 40px 10px 0 10px;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 110vh;
        overflow: visible;
        margin-bottom: 0;
    }
    .gl7-right { position: relative; z-index: 1; }
    .gl7-form { margin-bottom: 10px; width: 100%; max-width: 500px; }
    .gl7-mobile-content { position: relative; z-index: 0; margin-top: 40px; width: 100%; max-width: 500px; }
    
    
    .gl7-container {
        flex-direction: column;
        gap: 24px;
        min-height: auto;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    
    /* Hide desktop layout on mobile */
    .gl7-left {
        display: none;
    }
    
    .gl7-right {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    /* Show mobile layout */
    .gl7-mobile-content {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .gl7-mobile-title {
        font-size: 28px;
        line-height: 32px;
        text-align: center;
        margin: 0;
        color: #ffffff;
        font-weight: 700;
    }
    
    .gl7-mobile-description {
        display: flex;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .gl7-mobile-description p {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
        color: #d9d9d9;
        margin: 0;
    }
    
    .gl7-mobile-logo-container {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: 0;
        margin-top: 20px;
    }
    .gl7-mobile-image { position: relative; z-index: 2; margin-right: 0; margin-left: 0; }
    .gl7-mobile-logo { position: relative; z-index: 1; }
    .gl7-mobile-questionary-image { position: relative; z-index: 2; }
    .gl7-mobile-logo-image { position: relative; z-index: 1; }
    
    .gl7-mobile-logo {
        width: 150px;
        height: auto;
        order: 2;
    }
    
    .gl7-mobile-logo-image {
        width: 150px;
        height: auto;
        object-fit: contain;
    }
    
    .gl7-mobile-image {
        width: 100%;
        max-width: 220px;
        height: auto;
        margin: 0 auto;
        order: 1;
        margin-left: 0;
        margin-right: 0;
    }
    
    .gl7-mobile-questionary-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .gl7-content {
        text-align: center;
        gap: 20px;
    }
    
    .gl7-title {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .gl7-description {
        gap: 15px;
    }
    
    .gl7-description p {
    font-size: 14px;
        line-height: 22px;
        text-align: center;
    }
    
    .gl7-logo-container {
        position: relative;
        left: auto;
        top: auto;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    
    .gl7-logo {
        position: relative;
        bottom: auto;
        right: auto;
        width: 200px;
        height: auto;
        order: 2;
        display: flex;
        justify-content: center;
    }
    
    .gl7-logo-image {
        width: 200px;
        height: auto;
        object-fit: contain;
    }
    
    .gl7-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
        order: 1;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .gl7-form {
        height: auto !important;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gl7-form-group {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .gl7-label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
    }
    
    .gl7-input {
        height: 50px;
        padding: 15px 20px;
        font-size: 16px;
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        transition: border-color 0.3s ease, background-color 0.3s ease;
    }
    
    .gl7-input:focus {
        outline: none;
        border-color: #f7931e;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .gl7-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .gl7-radio-group {
        display: flex;
        gap: 20px;
        margin-top: 10px;
    }
    
    .gl7-radio {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }
    
    .gl7-radio-custom {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        position: relative;
        transition: border-color 0.3s ease;
    }
    
    .gl7-radio input[type="radio"] {
        display: none;
    }
    
    .gl7-radio input[type="radio"]:checked + .gl7-radio-custom {
        border-color: #f7931e;
    }
    
    .gl7-radio input[type="radio"]:checked + .gl7-radio-custom::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
        background: #f7931e;
        border-radius: 50%;
    }
    
    .gl7-radio-text {
        font-size: 14px;
        line-height: 20px;
        color: #ffffff;
    }
    
    .gl7-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        cursor: pointer;
        margin-top: 10px;
    }
    
    .gl7-checkbox-custom {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        position: relative;
        transition: border-color 0.3s ease;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .gl7-checkbox input[type="checkbox"] {
        display: none;
    }
    
    .gl7-checkbox input[type="checkbox"]:checked + .gl7-checkbox-custom {
        border-color: #f7931e;
        background: #f7931e;
    }
    
    .gl7-checkbox input[type="checkbox"]:checked + .gl7-checkbox-custom::after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #000000;
        font-size: 12px;
        font-weight: bold;
    }
    
    .gl7-checkbox-text {
        font-size: 13px;
        line-height: 18px;
        color: #d9d9d9;
    }
    
    .gl7-button-container {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        margin-top: 20px;
        min-width: auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .gl7-button {
        width: 100%;
        max-width: 300px;
        height: 50px;
        position: relative;
        border: none;
        background: none;
        cursor: pointer;
        transition: transform 0.2s ease;
    }
    
    .gl7-button:active {
        transform: scale(0.95);
    }
    
    .gl7-button-svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .gl7-button-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px;
        font-weight: 600;
        color: #000000;
        text-transform: uppercase;
        pointer-events: none;
        height: auto;
    }
    
    .gl7-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    /* Unify 480px and 360px behavior for GL7 */
    .gl7-section {
        padding: 50px 10px 0 10px;
        min-height: 120vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        margin-bottom: 0;
    }
    .gl7-form { margin-bottom: 10px; }
    .gl7-mobile-content { margin-top: 56px; }
    .gl7-mobile-image { max-width: 250px; margin-left: -32px; margin-right: -48px; position: relative; z-index: 2; }
    .gl7-mobile-logo-container { gap: 0; }
    .gl7-mobile-questionary-image { position: relative; z-index: 2; }
    .gl7-mobile-logo-image { position: relative; z-index: 1; }
    
    .gl7-container {
        flex-direction: column;
        gap: 25px;
        min-height: auto;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        align-items: center;
    }
    
    /* Hide desktop layout on mobile */
    .gl7-left {
        display: none;
    }
    
    .gl7-right {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    /* Show mobile layout */
    .gl7-mobile-content {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .gl7-mobile-title {
        font-size: 28px;
        line-height: 28px;
        text-align: center;
        margin: 0;
        color: #ffffff;
        font-weight: 700;
    }
    
    .gl7-mobile-description {
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .gl7-mobile-description p {
        font-size: 13px;
        line-height: 20px;
        text-align: center;
        color: #d9d9d9;
        margin: 0;
    }
    
    .gl7-mobile-logo-container {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: 12px;
        margin-top: 15px;
    }
    
    .gl7-mobile-logo {
        width: 150px;
        height: auto;
        order: 2;
    }
    
    .gl7-mobile-logo-image {
        width: 150px;
        height: auto;
        object-fit: contain;
    }
    
    .gl7-mobile-image {
        width: 100%;
        max-width: 250px;
        height: auto;
        margin: 0 auto;
        order: 1;
    }
    
    .gl7-mobile-questionary-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .gl7-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        gap: 15px;
        text-align: center;
    }
    
    .gl7-title {
        font-size: 20px;
        line-height: 28px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .gl7-description {
        gap: 12px;
    }
    
    .gl7-description p {
        font-size: 13px;
        line-height: 20px;
        text-align: center;
    }
    
    .gl7-logo-container {
        position: relative;
        left: auto;
        top: auto;
        margin-top: 20px;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .gl7-logo {
        width: 150px;
        height: auto;
        order: 2;
    }
    
    .gl7-logo-image {
        width: 150px;
        height: auto;
    }
    
    .gl7-image {
        width: 100%;
        max-width: 250px;
        height: auto;
        margin: 0 auto;
        order: 1;
    }
    
    .gl7-form {
        gap: 15px;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .gl7-input {
        height: 45px;
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .gl7-radio-group {
        gap: 15px;
    }
    
    .gl7-radio-custom {
        width: 18px;
        height: 18px;
    }
    
    .gl7-radio input[type="radio"]:checked + .gl7-radio-custom::after {
        width: 6px;
        height: 6px;
    }
    
    .gl7-radio-text {
        font-size: 13px;
    }
    
    .gl7-checkbox-custom {
        width: 18px;
        height: 18px;
    }
    
    .gl7-checkbox-text {
        font-size: 12px;
        line-height: 16px;
    }
    
    .gl7-button {
        max-width: 280px;
        height: 45px;
    }
    
    .gl7-button-text {
        font-size: 13px;
    }
}

/* Extra small screens (up to 360px) */
@media (max-width: 360px) {
    .gl7-section {
        padding: 50px 10px 0 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 120vh;
        overflow: visible;
        margin-bottom: 0;
    }
    .gl7-form { margin-bottom: 10px; }
    .gl7-mobile-content { margin-top: 56px; }
    .gl7-mobile-questionary-image { position: relative; z-index: 2; }
    .gl7-mobile-logo-image { position: relative; z-index: 1; }
    
    
    .gl7-container {
        gap: 25px;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        align-items: center;
    }
    
    /* Hide desktop layout on mobile */
    .gl7-left {
        display: none;
    }
    
    .gl7-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    /* Show mobile layout */
    .gl7-mobile-content {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .gl7-mobile-title {
        font-size: 24px;
        line-height: 26px;
        text-align: center;
        margin: 0;
        color: #ffffff;
        font-weight: 700;
    }
    
    .gl7-mobile-description {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .gl7-mobile-description p {
        font-size: 12px;
        line-height: 18px;
        text-align: center;
        color: #d9d9d9;
        margin: 0;
    }
    
    .gl7-mobile-logo-container {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: 0;
        margin-top: 12px;
    }
    .gl7-mobile-image { position: relative; z-index: 2; margin-right: -20px; }
    .gl7-mobile-logo { position: relative; z-index: 1; }
    
    .gl7-mobile-logo {
        width: 120px;
        height: auto;
        order: 2;
    }
    
    .gl7-mobile-logo-image {
        width: 120px;
        height: auto;
        object-fit: contain;
    }
    
    .gl7-mobile-image {
        width: 100%;
        max-width: 200px;
        height: auto;
        margin: 0 auto;
        margin-left: -24px;
        margin-right: -36px;
        order: 1;
    }
    
    .gl7-mobile-questionary-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .gl7-input {
        height: 42px;
        padding: 10px 14px;
        font-size: 16px;
    }
    
    .gl7-radio-group {
        gap: 12px;
    }
    
    .gl7-radio-custom {
        width: 16px;
        height: 16px;
    }
    
    .gl7-radio input[type="radio"]:checked + .gl7-radio-custom::after {
        width: 5px;
        height: 5px;
    }
    
    .gl7-radio-text {
        font-size: 12px;
    }
    
    .gl7-checkbox-custom {
        width: 16px;
        height: 16px;
    }
    
    .gl7-checkbox-text {
        font-size: 11px;
        line-height: 15px;
    }
    
    .gl7-form {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .gl7-button {
        max-width: 260px;
        height: 42px;
    }
    
    .gl7-button-text {
        font-size: 12px;
    }
}

/* GL7: Apply exact <=360px styles to all screens up to 480px */
@media (max-width: 480px) {
    .gl7-section { padding: 50px 10px 0 10px; display: flex; align-items: center; justify-content: center; min-height: 120vh; overflow: visible; margin-bottom: 0; }
    .gl7-form { margin-bottom: 10px; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .gl7-mobile-content { margin-top: 56px; order: 2; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 20px; }
    .gl7-mobile-questionary-image { position: relative; z-index: 2; }
    .gl7-mobile-logo-image { position: relative; z-index: 1; }
    .gl7-container { gap: 25px; width: 100%; max-width: 350px; margin: 0 auto; align-items: center; }
    .gl7-left { display: none; }
    .gl7-right { width: 100%; display: flex; justify-content: center; }
    .gl7-mobile-title { font-size: 24px; line-height: 26px; text-align: center; margin: 0; color: #ffffff; font-weight: 700; }
    .gl7-mobile-description { display: flex; flex-direction: column; gap: 10px; text-align: center; }
    .gl7-mobile-description p { font-size: 12px; line-height: 18px; text-align: center; color: #d9d9d9; margin: 0; }
    .gl7-mobile-logo-container { display: flex; flex-direction: row; align-items: flex-end; justify-content: center; gap: 0; margin-top: 12px; }
    .gl7-mobile-image { position: relative; z-index: 2; margin-right: -20px; width: 100%; max-width: 200px; height: auto; margin-left: -24px; }
    .gl7-mobile-logo { position: relative; z-index: 1; width: 120px; height: auto; order: 2; }
    .gl7-mobile-logo-image { width: 120px; height: auto; object-fit: contain; }
    .gl7-mobile-questionary-image { width: 100%; height: auto; object-fit: contain; }
    .gl7-input { height: 42px; padding: 10px 14px; font-size: 16px; }
    .gl7-radio-group { gap: 12px; }
    .gl7-radio-custom { width: 16px; height: 16px; }
    .gl7-radio input[type="radio"]:checked + .gl7-radio-custom::after { width: 5px; height: 5px; }
    .gl7-radio-text { font-size: 12px; }
    .gl7-checkbox-custom { width: 16px; height: 16px; }
    .gl7-checkbox-text { font-size: 11px; line-height: 15px; }
    .gl7-button { max-width: 260px; height: 42px; }
    .gl7-button-text { font-size: 12px; }
}


/* Responsive Design */
@media (max-width: 1200px) {
    .header-center .nav-list {
        gap: 20px;
    }
    
    .hero-section {
        min-height: 350px;
    }
    
    .hero-text {
        max-width: 100%;
        margin: 0;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contacts-info {
        gap: 40px;
    }
    
    .intensive-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .intensive-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 0 auto;
    }
    
    .intensive-details {
        margin-left: 0;
        margin: 0 auto;
    }
    
    .main-title-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .main-title-background-left,
    .main-title-background-right {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        margin: 20px 0;
    }
    
    .main-title-logo {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card:nth-child(4),
    .value-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-center {
        display: none;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .join-button {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .hero-section {
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        display: none !important;
    }
    
    .hero-pagination {
        gap: 8px;
        bottom: 30px;
    }
    
    
    .hero-button {
        width: 100%;
        max-width: 300px;
    }
    
    .contacts-content {
        padding: 20px;
    }
    
    .contacts-title {
        font-size: 28px;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contacts-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .intensive-content {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .application-form {
        padding: 20px;
    }
    
    .main-title-line-1,
    .main-title-line-2,
    .main-title-line-3 {
        font-size: 48px;
        line-height: 50px;
    }
    
    .values-title {
        font-size: 28px;
    }
    
    .faq-title {
        font-size: 48px;
        line-height: 50px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 250px;
    }
    
    .hero-pagination {
        gap: 6px;
        bottom: 25px;
    }
    
    
    .main-title-line-1,
    .main-title-line-2,
    .main-title-line-3 {
        font-size: 36px;
        line-height: 40px;
    }
    
    .values-title {
        font-size: 24px;
    }
    
    .faq-title {
        font-size: 36px;
        line-height: 40px;
    }
}

/* GL4 Section - New Implementation */
.gl4-section {
    position: relative;
    background-color: #000000;
    padding: 51px 89px;
    width: 100%;
    max-width: 1246px;
    margin: 0 auto;
    min-height: 423.28px;
    box-sizing: border-box;
}

.gl4-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #5c5c5c;
    pointer-events: none;
}

.gl4-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 321.28px;
    z-index: 2;
    gap: 377.68px;
}

.gl4-left {
    flex: 0 0 auto;
    max-width: 1133px;
    min-width: 0;
    padding: 0 12px;
    box-sizing: border-box;
}

.gl4-content {
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-items: flex-start;
    width: 100%;
}

.gl4-header {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    width: 100%;
}

.gl4-badge {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18.75px;
    line-height: 30px;
    color: #f7931e;
    text-transform: uppercase;
    margin: 0 0 14.2px 0;
}

.gl4-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 36.4px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 8.2px 0;
}

.gl4-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18.281px;
    line-height: 30px;
    color: #d9d9d9;
    margin: 0;
}

.gl4-actions {
    display: flex;
    flex-direction: column;
    gap: 14.5px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.gl4-button-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 270px;
    padding: 1px;
    position: relative;
    z-index: 2;
}

.gl4-button {
    position: relative;
    display: inline-block;
    width: 270px;
    height: 52px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gl4-button-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.gl4-button-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    color: #40C1CD;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 3;
    transition: color 0.3s ease;
}

.gl4-button:hover .gl4-button-svg {
    content: url('assets/buttons/blue_hover=true.svg');
}

.gl4-button:hover .gl4-button-text {
    color: #62EEFB;
}

.gl4-link-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.gl4-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.875px;
    line-height: 24px;
    color: #ffffff;
    text-decoration: underline;
    text-align: center;
    cursor: pointer;
    margin-right: -5.68434e-14px;
}

.gl4-dot {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    text-align: center;
    margin-right: -5.68434e-14px;
}

.gl4-center {
    position: absolute;
    bottom: -50px;
    left: 319.92px;
    max-width: 1920px;
    padding: 0 12px;
    box-sizing: border-box;
    z-index: 1;
}

.gl4-image {
    width: 422px;
    height: auto;
    position: relative;
}

.gl4-soldier-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    display: block;
}

.gl4-right {
    flex: 0 0 auto;
    max-width: 1133px;
    min-width: 0;
    padding: 0 12px 0 55.66px;
    box-sizing: border-box;
}

.gl4-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    max-width: 310px;
    width: 100%;
}

.gl4-detail-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.875px;
    line-height: 24px;
    color: #d9d9d9;
    width: 100%;
    margin: 0;
}

.gl4-note {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15.125px;
    line-height: 24px;
    color: #ffffff;
    width: 100%;
    margin: 0;
}

.gl4-corner-image {
    position: absolute;
    width: 188px;
    height: 188px;
    z-index: 3;
}

.gl4-corner-bottom-left {
    bottom: -4px;
    left: -4px;
    transform: rotate(180deg);
}

.gl4-corner-top-right {
    top: -4px;
    right: -4px;
}

.gl4-effect-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: glow-pulse 4s ease-in-out infinite;
}


/* GL5 Section - Values */
.gl5-section {
    position: relative;
    background-color: #000000;
    padding: 250px 325px 0 325px;
    width: 100%;
    height: 800px;
    box-sizing: border-box;
    overflow: hidden;
}

.gl5-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 70px;
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
    z-index: 2;
}

.gl5-header {
    position: relative;
    z-index: 2;
}

.gl5-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 36.4px;
    color: #d9d9d9;
    text-transform: uppercase;
    letter-spacing: 3.92px;
    margin: 0;
    text-align: left;
}

.gl5-content {
    position: relative;
    width: 100%;
    height: 430px;
    z-index: 1;
}

.gl5-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gl5-cloud-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.gl5-values-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    align-items: start;
    justify-items: start;
}

.gl5-value-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 12px;
    box-sizing: border-box;
}

.gl5-value-center {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    align-self: start;
    margin-top: 0;
}

.gl5-value-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #f7931e;
    text-transform: uppercase;
    margin: 0;
}

.gl5-value-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.75px;
    line-height: 24px;
    color: #d9d9d9;
    margin: 0;
}

/* Responsive Design for GL5 */
@media (max-width: 1200px) {
    .gl5-section {
        padding: 100px 24px 0 24px;
        height: auto;
    }
    
    .gl5-container {
        gap: 40px;
    }
    
    .gl5-values-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 30px;
    }
    
    .gl5-value-center {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .gl5-section {
        padding: 80px 16px 0 16px;
        height: auto;
    }
    
    .gl5-container {
        gap: 30px;
    }
    
    .gl5-title {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }
    
    .gl5-content {
        height: auto;
    }
    
    .gl5-values-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 25px;
        height: auto;
    }
    
    .gl5-value-center {
        grid-column: 1;
        grid-row: auto;
    }
    
    .gl5-value-item {
        padding: 15px;
        gap: 12px;
    }
    
    .gl5-value-title {
        font-size: 18px;
        line-height: 28px;
    }
    
    .gl5-value-text {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .gl5-section {
        padding: 80px 12px 0 12px;
    }
    
    .gl5-container {
        gap: 25px;
    }
    
    .gl5-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .gl5-values-grid {
        gap: 20px;
    }
    
    .gl5-value-item {
        padding: 12px;
        gap: 10px;
    }
    
    .gl5-value-title {
        font-size: 16px;
        line-height: 24px;
    }
    
    .gl5-value-text {
        font-size: 13px;
        line-height: 20px;
    }
}

/* Responsive Design for GL4 */
@media (max-width: 1200px) {
    .gl4-section {
        padding: 60px 24px;
        height: auto;
    }
    
    .gl4-container {
        flex-direction: column;
        gap: 30px;
        height: auto;
    }
    
    .gl4-center {
        position: relative;
        bottom: auto;
        left: auto;
        order: 2;
        max-width: none;
        padding: 0;
    }
    
    .gl4-right {
        order: 3;
        padding: 0 12px;
    }
    
    .gl4-left {
        order: 1;
    }
    
    .gl4-image {
        width: 350px;
        height: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .gl4-section {
        padding: 60px 15px;
    }
    
    .gl4-container {
        gap: 20px;
    }
    
    .gl4-content {
        gap: 30px;
    }
    
    .gl4-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .gl4-badge {
        font-size: 16px;
        line-height: 24px;
    }
    
    .gl4-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .gl4-button-container {
        min-width: 250px;
    }
    
    .gl4-button {
        height: 45px;
    }
    
    .gl4-button-text {
        font-size: 10px;
    }
    
    .gl4-image {
        width: 300px;
        height: 350px;
    }
    
    .gl4-details {
        max-width: 100%;
    }
    
    .gl4-corner-left,
    .gl4-corner-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .gl4-section {
        padding: 60px 10px;
    }
    
    .gl4-container {
        gap: 15px;
    }
    
    .gl4-content {
        gap: 20px;
    }
    
    .gl4-title {
        font-size: 20px;
        line-height: 26px;
    }
    
    .gl4-badge {
        font-size: 14px;
        line-height: 20px;
    }
    
    .gl4-description {
        font-size: 14px;
        line-height: 20px;
    }
    
    .gl4-button-container {
        min-width: 200px;
    }
    
    .gl4-button {
        height: 40px;
    }
    
    .gl4-button-text {
        font-size: 8px;
    }
    
    .gl4-image {
        width: 250px;
        height: 300px;
    }
    
    .gl4-details {
        max-width: 100%;
        gap: 15px;
    }
    
    .gl4-detail-text,
    .gl4-note {
        font-size: 13px;
        line-height: 20px;
    }
}

/* GL8 Section - New Background Section */
.gl8-section {
    position: relative;
    background-color: #000000;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.gl8-background {
    position: relative;
    width: 100%;
    z-index: 1;
}

.gl8-bg-image {
    width: 100%;
    height: auto;
    display: block;
}

.gl8-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    padding: 0 24px;
}

.gl8-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.gl8-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gl8-column-center {
    text-align: center;
}

.gl8-logo {
    width: 100%;
    max-width: 200px;
}

.gl8-logo-image {
    width: 100%;
    height: auto;
    display: block;
}

.gl8-text {
    margin-bottom: 100px;
    width: 100%;
    max-width: 400px;
}

.gl8-text-image {
    width: 100%;
    height: auto;
    display: block;
}

.gl8-button-container {
    width: 100%;
    max-width: 400px;
}

.gl8-button {
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 100%;
}

.gl8-button:hover {
    transform: translateY(-2px);
}

.gl8-button-bg {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.gl8-button:hover .gl8-button-bg {
    opacity: 0;
}

.gl8-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/fond/variant=1,_hover=true.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gl8-button:hover::after {
    opacity: 1;
}

.gl8-button-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #f7931e;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 3;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding: 0 10px;
    letter-spacing: 0.3px;
}

.gl8-button:hover .gl8-button-text {
    color: #ffffff;
}

/* Responsive for GL8 */
@media (max-width: 1200px) {
    .gl8-container {
        padding: 0 24px;
    }
    
    .gl8-layout {
        gap: 30px;
    }
    
    .gl8-logo {
        max-width: 180px;
    }
    
    .gl8-text {
        max-width: 350px;
    }
    
    .gl8-button-container {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .gl8-section {
        padding: 0;
        margin: 0;
    }
    
    .gl8-background {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .gl8-bg-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .gl8-container {
        padding: 0 16px;
    }
    
    .gl8-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gl8-logo {
        display: none !important;
    }
    
    .gl8-text {
        max-width: 280px;
        margin-bottom: 20px;
    }
    
    .gl8-text-image {
        width: 100%;
        height: auto;
        max-width: 250px;
    }
    
    .gl8-button-container {
        max-width: 280px;
    }
    
    .gl8-button-text {
        font-size: 10px;
        line-height: 14px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .gl8-section {
        padding: 0;
        margin: 0;
    }
    
    .gl8-background {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .gl8-bg-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .gl8-container {
        padding: 0 12px;
    }
    
    .gl8-layout {
        gap: 25px;
    }
    
    .gl8-logo {
        display: none !important;
    }
    
    .gl8-text {
        max-width: 250px;
        margin-bottom: 15px;
    }
    
    .gl8-text-image {
        width: 100%;
        height: auto;
        max-width: 220px;
    }
    
    .gl8-button-container {
        max-width: 250px;
    }
    
    .gl8-button-text {
        font-size: 9px;
        line-height: 12px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
}

/* Support Page Styles */
.support-section {
    position: relative;
    background-color: #000000;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
}

.support-background {
    position: relative;
    width: 100%;
    z-index: 1;
}

.support-bg-image {
    width: 100%;
    height: auto;
    display: block;
}

.support-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 1270px;
    width: 100%;
    padding: 0 24px;
}

.support-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    width: 100%;
}

.support-column {
    display: flex;
    flex-direction: column;
}

.support-column-right {
    padding-left: 73px;
}

.support-content {
    color: #ffffff;
}

.support-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 36.4px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.support-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.875px;
    line-height: 24px;
    color: #d9d9d9;
    margin: 0 0 70px 0;
}

.support-button-container {
    width: 100%;
    max-width: 400px;
    min-width: 400px;
}

.support-button {
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 100%;
    min-width: 270px;
    height: 50px;
}

.support-button:hover {
    transform: translateY(-2px);
}

.support-button-bg {
    width: 100%;
    height: 50px;
    display: block;
    transition: opacity 0.3s ease;
}

.support-button:hover .support-button-bg {
    opacity: 0;
}

.support-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/fond/variant=1,_hover=true.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.support-button:hover::after {
    opacity: 1;
}

.support-button-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #f7931e;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 3;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding: 0 40px;
    letter-spacing: 0.3px;
}

.support-button:hover .support-button-text {
    color: #ffffff;
}

.support-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.75px;
    line-height: 24px;
    color: #d9d9d9;
    margin: 0 0 30px 0;
}

.support-description:last-child {
    margin-bottom: 0;
}


.support-images-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    margin-top: 300px;
}

.support-image-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-image {
    width: 100%;
    max-width: 500px;
    height: 100%;
    display: block;
}

/* Responsive for Support Page */
@media (max-width: 1200px) {
    .support-section { min-height: auto; }
    .support-container {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        z-index: 2;
        padding: 60px 24px 40px 24px;
        max-width: 1270px;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .support-column-right {
        padding-left: 40px;
    }
    
    .support-images-layout {
        margin-top: 120px;
    }
    
    .support-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .support-text {
        font-size: 14px;
        line-height: 22px;
    }
    
    .support-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .support-images-layout {
        gap: 30px;
    }
    
    .support-image { max-width: 250px; height: auto; }
}

@media (max-width: 768px) {
    .support-section { min-height: auto; }
    .support-container {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        padding: 40px 24px 30px 24px;
    }
    
    .support-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-images-layout { margin-top: 24px; }
    
    .support-column-right {
        padding-left: 0;
    }
    
    .support-title {
        font-size: 22px;
        line-height: 28px;
    }
    
    .support-text {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 30px;
    }
    
    .support-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .support-button-container {
        max-width: 270px;
        min-width: 270px;
    }
    
    .support-button-text {
        font-size: 12px;
        line-height: 16px;
        padding: 0 20px;
    }
    
    
    .support-images-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-image { max-width: 200px; height: auto; }
}

/* GL7 Section - Application Form */
.gl7-section {
    position: relative;
    z-index: 1;
    background-color: #000000;
    background-image: url('assets/gl7/back.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 200px 20px 0 20px;
    width: 100%;
    min-height: 800px;
    box-sizing: border-box;
    overflow: visible;
    margin-bottom: 0;
}

 

/* Hide mobile layout on desktop */
.gl7-mobile-content {
    display: none;
}

/* Force mobile GL7 content to show on mobile breakpoints */
@media (max-width: 1200px) {
    .gl7-mobile-content { display: flex !important; }
}
@media (max-width: 768px) {
    .gl7-mobile-content { display: flex !important; }
    .gl7-left { display: none !important; }
    .gl7-right { height: auto !important; position: relative !important; }
    .gl7-form {
        position: static !important;
        height: auto !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 540px !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        margin: 0 auto 56px !important;
        align-items: stretch !important;
    }
    .gl7-form-row { display: block !important; }
    .gl7-form-group {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        min-width: 0 !important;
        z-index: auto !important;
    }
    .gl7-button-container {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-top: 24px !important;
    }
    .gl7-button { max-width: 320px !important; width: 100% !important; }
    .gl7-mobile-content {
        position: static !important;
        width: 100% !important;
        max-width: 540px !important;
        margin: 10px auto 0 !important;
    }
}
/* Consolidated: single breakpoint for GL7 at <=480px */
@media (max-width: 480px) {
    .gl7-mobile-content { display: flex !important; }
    .gl7-form { max-width: 350px !important; margin: 0 auto 72px !important; }
    .gl7-mobile-content { max-width: 350px !important; margin: 16px auto 0 !important; }
    .gl7-mobile-image { margin-left: 0 !important; margin-right: 0 !important; max-width: 240px !important; }
    .gl7-section { overflow-x: hidden !important; }
}

.gl7-container {
    position: relative;
    display: flex;
    gap: 0;
    align-items: flex-start;
    max-width: 1270px;
    width: 100%;
    margin: 0 auto;
    min-height: 712px;
}

.gl7-left {
    flex: 0 0 529.16px;
    max-width: 529.16px;
    padding: 0 12px;
    position: relative;
    height: 712.05px;
    margin-right: 0;
}

.gl7-content {
    position: absolute;
    top: -0.81px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gl7-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 36.4px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.gl7-description {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gl7-description p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.625px;
    line-height: 24px;
    color: #d9d9d9;
    margin: 0;
}

.gl7-link {
    color: #f7931e;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline;
}

.gl7-link:hover {
    color: #ffffff;
}

.gl7-checkbox-text .gl7-link {
    color: #f7931e;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.gl7-checkbox-text .gl7-link:hover {
    color: #ffffff;
}

.gl7-logo-container {
    position: absolute;
    left: -95px;
    top: 154.78px;
    display: flex;
    align-items: flex-start;
}

.gl7-logo {
    position: absolute;
    bottom: -116.2px;
    right: -51px;
    width: 300px;
    height: 505.25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.gl7-logo-image {
    width: 300px;
    height: 505.263px;
    object-fit: contain;
    position: relative;
    z-index: 0;
}

.gl7-image {
    width: 490px;
    height: 557.27px;
    background-image: url('assets/gl7/questionary-pic.webp');
    background-size: 100% 100%;
    background-position: 0% 50.09%;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}

.gl7-questionary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl7-right {
    flex: 0 0 740.83px;
    max-width: 740.83px;
    padding: 0 12px;
    position: relative;
    height: 480px;
    margin-left: 0;
}

.gl7-form {
    position: relative;
    height: 480px;
    width: 100%;
    overflow: visible;
}

.gl7-form-row {
    display: none;
}

.gl7-form-group {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: auto;
    min-width: 200px;
}

/* Прізвище - позиция 0,0 */
.gl7-form-group:nth-child(1) {
    left: 0;
    right: 365.42px;
    top: 0;
}

/* Імʼя - позиция 0,103px */
.gl7-form-group:nth-child(2) {
    left: 0;
    right: 365.42px;
    top: 103px;
}

/* По-батькові - позиция 0,206px */
.gl7-form-group:nth-child(3) {
    left: 0;
    right: 365.42px;
    top: 206px;
}

/* Номер телефону - позиция 0,309px */
.gl7-form-group:nth-child(4) {
    left: 0;
    right: 365.42px;
    top: 309px;
}

/* Нік в телеграмі - позиция 365.4px,0 */
.gl7-form-group:nth-child(5) {
    left: 365.4px;
    right: 0.02px;
    top: 0;
}

/* Чи є військовослужбовцем - позиция 365.4px,103px */
.gl7-form-group:nth-child(6) {
    left: 365.4px;
    right: 0.02px;
    top: 103px;
}

/* Мені від 18 до 58 років - позиция 365.4px,228px */
.gl7-form-group:nth-child(7) {
    left: 365.4px;
    right: 0.02px;
    top: 228px;
}

/* Політика конфіденційності - позиция 365.4px,260px */
.gl7-form-group:nth-child(8) {
    left: 365.4px;
    right: 0.02px;
    top: 260px;
}

.gl7-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 21px;
    color: #ffffff;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gl7-input {
    width: 100%;
    height: 50px;
    padding: 15px 21px 16px 21px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.gl7-input::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.gl7-input:focus {
    outline: none;
    border-color: #f7931e;
}

.gl7-radio-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.gl7-radio {
    display: flex;
    align-items: center;
    min-height: 24px;
    padding: 1.5px 0;
    cursor: pointer;
}

.gl7-radio input[type="radio"] {
    display: none;
}

.gl7-radio-custom {
    width: 20px;
    height: 20px;
    border: 1px solid #b6b6b6;
    border-radius: 10px;
    margin-right: 15.4px;
    position: relative;
    transition: all 0.3s ease;
}

.gl7-radio input[type="radio"]:checked + .gl7-radio-custom {
    background-color: #f7931e;
    border-color: #f7931e;
}

.gl7-radio input[type="radio"]:checked + .gl7-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
}

.gl7-radio-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 21px;
    color: #ffffff;
    white-space: nowrap;
}

.gl7-checkbox {
    display: flex;
    align-items: flex-start;
    min-height: 24px;
    padding: 1.5px 0;
    cursor: pointer;
}

.gl7-checkbox input[type="checkbox"] {
    display: none;
}

.gl7-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 1px solid #b6b6b6;
    margin-right: 15.4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0;
}

.gl7-checkbox input[type="checkbox"]:checked + .gl7-checkbox-custom {
    background-color: #f7931e;
    border-color: #f7931e;
}

.gl7-checkbox input[type="checkbox"]:checked + .gl7-checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 8px;
    border: 2px solid #ffffff;
    border-top: none;
    border-right: none;
    transform: translate(-50%, -60%) rotate(-45deg);
}

.gl7-checkbox-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 21px;
    color: #ffffff;
    flex: 1;
    word-wrap: break-word;
    hyphens: auto;
}

.gl7-button-container {
    position: absolute;
    left: 365.4px;
    right: 0.02px;
    top: 345px;
    min-width: 270px;
    padding: 1px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.gl7-button {
    position: relative;
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-radius: 0;
    outline: none;
}

.gl7-button:hover {
    transform: scale(1.02);
}

.gl7-button:focus {
    outline: 2px solid #f7931e;
    outline-offset: 2px;
}

.gl7-button-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gl7-button-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    color: #ffffff;
    text-transform: uppercase;
    z-index: 2;
    pointer-events: none;
    text-align: center;
    white-space: nowrap;
}

.gl7-button:hover .gl7-button-text {
    color: #f7931e;
}

/* GL6 Section - FAQ */
.gl6-section {
    position: relative;
    background-color: #000000;
    padding: 200px 0 150px 0;
    width: 100%;
    box-sizing: border-box;
}

.gl6-container {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 12px;
    box-sizing: border-box;
}

.gl6-header {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14.5px;
    width: 50%;
    min-height: 369.78px;
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}

  .gl6-logo {
     position: relative;
     top: 0;
     left: 0;
     width: 79px;
     height: 128px;
     z-index: 2;
     margin-bottom: 20px;
  }

.gl6-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top left;
}

.gl6-content {
    position: relative;
    top: auto;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 14.5px;
    width: 100%;
    z-index: 2;
    padding-left: 0;
}

.gl6-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 36.4px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 0.585px;
}

.gl6-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #d9d9d9;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.gl6-contact-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.625px;
    line-height: 24px;
    color: #f7931e;
    text-decoration: underline;
    text-underline-position: from-font;
    cursor: pointer;
    margin-left: 0;
}

.gl6-button-container {
    position: absolute;
    top: 150.78px;
    left: 0;
    width: 270px;
    height: 52px;
    z-index: 2;
}

.gl6-button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gl6-button-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    z-index: 1;
}

.gl6-button:hover .gl6-button-svg {
    content: url('assets/gl6/button-hover=true.svg');
}

.gl6-button-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 3;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding: 0 15px;
    letter-spacing: 0.3px;
}

.gl6-button:hover .gl6-button-text {
    color: #f7931e;
}

.gl6-faq-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
    margin-top: 10px;
    padding-top: 10px;
    z-index: 1;
    flex-shrink: 0;
}

.gl6-faq-item {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}

.gl6-faq-item:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-color: #f7931e;
    box-shadow: 0 8px 32px rgba(247, 147, 30, 0.3), 0 4px 16px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.gl6-faq-question {
    display: flex;
    align-items: center;
    padding: 25px 20px;
    padding-right: 80px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 70px;
    flex-shrink: 0;
    overflow: hidden;
}

.gl6-faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(247, 147, 30, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gl6-faq-question:hover::before {
    opacity: 1;
}

.gl6-faq-question p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
    min-width: calc(100% - 80px);
}

.gl6-faq-question:hover p {
    color: #f7931e;
}

.gl6-faq-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(247, 147, 30, 0.3);
    box-shadow: 0 2px 8px rgba(247, 147, 30, 0.2);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.gl6-faq-toggle:hover {
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.3) 0%, rgba(247, 147, 30, 0.2) 100%);
    border-color: #f7931e;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 4px 16px rgba(247, 147, 30, 0.4);
}

.gl6-arrow {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0) invert(1);
}

.gl6-faq-item.active .gl6-arrow {
    transform: rotate(180deg);
}

.gl6-faq-item.active .gl6-faq-toggle {
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.4) 0%, rgba(247, 147, 30, 0.3) 100%);
    border-color: #f7931e;
    box-shadow: 0 4px 16px rgba(247, 147, 30, 0.5);
}

.gl6-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(247, 147, 30, 0.2);
    position: relative;
}

.gl6-faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #f7931e 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gl6-faq-item.active .gl6-faq-answer::before {
    opacity: 1;
}

.gl6-faq-item.active .gl6-faq-answer {
    max-height: 1000px;
    padding: 25px 20px 30px 20px;
}

.gl6-faq-answer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: #d9d9d9;
    margin: 0 0 16px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gl6-faq-item.active .gl6-faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

.gl6-faq-answer p:last-child {
    margin-bottom: 0;
}

.gl6-faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gl6-faq-item.active .gl6-faq-answer ul {
    opacity: 1;
    transform: translateY(0);
}

.gl6-faq-answer li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: #d9d9d9;
    margin-bottom: 10px;
    position: relative;
    padding-left: 8px;
}

.gl6-faq-answer li::before {
    content: '•';
    color: #f7931e;
    font-weight: bold;
    position: absolute;
    left: -15px;
    top: 0;
}

.gl6-faq-answer li:last-child {
    margin-bottom: 0;
}

/* Responsive Design for GL6 */
@media (max-width: 1200px) {
    .gl6-container {
        padding: 0 24px;
        flex-direction: column;
    }
    .gl6-header {
        width: 100%;
        min-height: auto;
        padding: 40px 0;
    }
    .gl6-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
    }
    .gl6-button-container {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 20px;
    }
    .gl6-faq-list {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .gl6-section {
        padding: 100px 0 80px 0;
    }
    
    .gl6-container {
        padding: 0 16px;
        flex-direction: column;
        gap: 30px;
    }
    
    .gl6-header {
        width: 100%;
        min-height: auto;
        padding: 20px 0;
    }
    
    .gl6-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
    }
    
    .gl6-button-container {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 20px;
    }
    
    .gl6-faq-list {
        width: 100%;
        margin-top: 20px;
    }
    
    .gl6-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .gl6-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .gl6-faq-question p {
        font-size: 16px;
        line-height: 24px;
        width: calc(100% - 60px);
        max-width: calc(100% - 60px);
        min-width: calc(100% - 60px);
    }
    
    .gl6-faq-question {
        padding: 20px 16px;
        min-height: 60px;
    }
    
    .gl6-faq-toggle {
        width: 36px;
        height: 36px;
        right: 16px;
    }
    
    .gl6-arrow {
        width: 16px;
        height: 16px;
    }
    
    .gl6-faq-answer {
        padding: 20px 16px 25px 16px;
    }
    
    .gl6-faq-answer p {
        font-size: 14px;
        line-height: 22px;
    }
    
    .gl6-faq-answer li {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .gl6-section {
        padding: 80px 0 60px 0;
    }
    
    .gl6-container {
        padding: 0 12px;
        gap: 25px;
    }
    
    .gl6-header {
        padding: 15px 0;
    }
    
    .gl6-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .gl6-description {
        font-size: 13px;
        line-height: 20px;
    }
    
    .gl6-faq-question p {
        font-size: 14px;
        line-height: 22px;
    }
    
    .gl6-faq-question {
        padding: 16px 12px;
        min-height: 55px;
    }
    
    .gl6-faq-toggle {
        width: 32px;
        height: 32px;
        right: 12px;
    }
    
    .gl6-arrow {
        width: 14px;
        height: 14px;
    }
    
    .gl6-faq-answer {
        padding: 16px 12px 20px 12px;
    }
    
    .gl6-faq-answer p {
        font-size: 13px;
        line-height: 20px;
    }
    
    .gl6-faq-answer li {
        font-size: 13px;
        line-height: 20px;
    }
}

/* Modal Overlay Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    position: relative;
    width: 60vw;
    max-width: 900px;
    height: 60vh;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.modal-background {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f7931e;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    box-sizing: border-box;
    border-radius: 8px;
    overflow: hidden;
}

/* Left Column - Video */
.modal-left-column {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none; /* prevent opening full-screen on mobile tap */
}

.modal-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.modal-video-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    padding: 40px 20px;
    text-align: left;
}

/* Right Column - Text */
.modal-right-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background: #f7931e;
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 100%;
}

.modal-text-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    box-sizing: border-box;
}

.modal-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #f7931e;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
}

.modal-description {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.modal-description p {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin: 0;
}

.modal-button-container {
    margin-top: 20px;
    width: 100%;
}

.modal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000000;
    color: #f7931e;
    padding: 14px 35px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-button:hover {
    transform: translateY(-2px);
    background: #f7931e;
    color: #000000;
}

.modal-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.modal-logo-image {
    width: 120px;
    height: auto;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22.5px;
    height: 22.5px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    border-radius: 6px;
    transition: background 0.3s ease;
    pointer-events: auto;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Cookie Notification Styles */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000000;
    border-top: 1px solid #f7931e;
    z-index: 9999;
    opacity: 0;
    transform: translateY(100%);
    display: none; /* prevent reserving layout space by default */
    transition: all 0.3s ease;
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 100vw;
}

.cookie-notification.show {
    opacity: 1;
    transform: translateY(0);
    display: block; /* reveal as overlay without affecting layout */
}

.cookie-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 46px 110px 45px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
    width: 100%;
}

.cookie-logo {
    flex-shrink: 0;
    width: 150px;
}

.cookie-logo-image {
    width: 97px;
    height: 44px;
}

.cookie-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 0;
}

.cookie-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cookie-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16.453px;
    line-height: 27px;
    color: #ffffff;
    margin: 0;
    white-space: pre-line;
}

.cookie-details {
    margin-top: 0;
}

.cookie-details-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-details-link:hover {
    color: #f7931e;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.cookie-btn {
    min-width: 270px;
    height: 50px;
    padding: 16px 40px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cookie-btn-primary {
    background: #f7931e;
    color: #000000;
}

.cookie-btn-primary:hover {
    background: #e8831a;
    transform: translateY(-2px);
}

.cookie-btn-secondary {
    background: #000000;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Responsive Design for Modals */
@media (max-width: 1200px) {
    .modal-content {
        width: 70vw;
        height: 70vh;
    }
    
    .modal-video-content {
        padding: 30px 15px;
    }
    
    .modal-right-column {
        padding: 30px 20px;
    }
    
    .modal-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .modal-description p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .modal-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .modal-logo-image {
        width: 100px;
    }
    
    .cookie-notification {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        background: #000000 !important;
        border-top: 1px solid #f7931e !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    .cookie-container {
        padding: 30px 20px;
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        min-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .modal-content { width: 90vw; height: auto; max-height: 85vh; overflow-y: auto !important; }
    
    .modal-background {
        flex-direction: column;
    }
    
    .modal-left-column {
        flex: 0 0 35%;
    }
    
    .modal-right-column {
        flex: 0 0 65%;
        padding: 20px 15px;
    }
    
    .modal-video-content {
        padding: 15px 10px;
    }
    
    .modal-title {
        font-size: 18px;
        line-height: 24px;
    }
    
    .modal-description p {
        font-size: 12px;
        line-height: 18px;
    }
    
    .modal-button {
        padding: 10px 25px;
        font-size: 12px;
    }
    
    .modal-logo-image {
        width: 80px;
    }
    
    .cookie-container {
        padding: 20px 15px;
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .cookie-text p {
        font-size: 14px;
        line-height: 24px;
    }
    
    .cookie-btn {
        font-size: 16px;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .modal-content { width: 95vw; height: auto; max-height: 90vh; overflow-y: auto !important; }
    
    .modal-background {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .modal-left-column {
        flex: 0 0 25%;
        min-height: 120px;
    }
    
    .modal-right-column {
        flex: 0 0 75%;
        padding: 15px 10px;
    }
    
    .modal-video-content {
        padding: 8px 5px;
        justify-content: center;
    }
    
    .modal-title {
        font-size: 16px;
        line-height: 22px;
    }
    
    .modal-description p {
        font-size: 11px;
        line-height: 16px;
    }
    
    .modal-button {
        padding: 8px 20px;
        font-size: 11px;
        width: 100%;
        max-width: 200px;
    }
    
    .modal-logo-image {
        width: 50px;
    }
    
    .modal-close {
        width: 20px;
        height: 20px;
        top: 8px;
        right: 8px;
    }
    
    .cookie-container {
        padding: 15px 10px;
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .cookie-logo {
        width: 100px;
    }
    
    .cookie-logo-image {
        width: 80px;
        height: 35px;
    }
    
    .cookie-text p {
        font-size: 13px;
        line-height: 20px;
    }
    
    .cookie-btn {
        font-size: 14px;
        padding: 12px 25px;
        width: 100%;
    }
    
    .cookie-buttons {
        width: 100%;
        gap: 8px;
    }
}

/* Success Modal Styles */
.success-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.success-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #f7931e;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(247, 147, 30, 0.3);
    animation: slideUp 0.4s ease-out;
}

.success-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f7931e, #e8831a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
    animation: pulse 2s infinite;
}

.success-modal-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #f7931e;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.success-modal-message {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.5;
}

.success-modal-close {
    background: linear-gradient(135deg, #f7931e, #e8831a);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-modal-close:hover {
    background: linear-gradient(135deg, #e8831a, #d9751a);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(247, 147, 30, 0.4);
}

.success-modal-close:active {
    transform: translateY(0);
}

/* Success Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Success Modal Mobile Responsive */
@media (max-width: 768px) {
    .success-modal-content {
        padding: 30px 20px;
        margin: 20px;
        max-width: 90%;
    }
    
    .success-modal-title {
        font-size: 24px;
    }
    
    .success-modal-message {
        font-size: 16px;
    }
    
    .success-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .success-modal-close {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .success-modal-content {
        padding: 25px 15px;
        margin: 15px;
        max-width: 95%;
    }
    
    .success-modal-title {
        font-size: 20px;
    }
    
    .success-modal-message {
        font-size: 14px;
    }
    
    .success-modal-icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .success-modal-close {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ==============================================
   PRIVACY POLICY PAGE - Політика конфіденційності
   ============================================== */

/* Smooth scroll for all pages */

.policy-section {
    background-color: #000000;
    padding: 120px 0 80px;
    min-height: 100vh;
}

.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.policy-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: left;
    width: 100%;
}

.policy-text {
    color: #ffffff;
    line-height: 1.8;
}

.policy-heading {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #f7931e;
    text-transform: uppercase;
    margin: 30px 0 15px 0;
    text-align: left;
    width: 100%;
}

.policy-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #d9d9d9;
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.policy-text p:last-child {
    margin-bottom: 0;
}

.policy-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #d9d9d9;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.policy-thanks {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #f7931e;
    margin-top: 30px;
    text-align: left;
    width: 100%;
}

/* Responsive for Privacy Policy */
@media (max-width: 1200px) {
    .policy-container {
        max-width: 1000px;
        padding: 0 40px;
    }
    
    .policy-content {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 100px 0 60px;
    }
    
    .policy-container {
        padding: 0 20px;
    }
    
    .policy-content {
        max-width: 100%;
    }
    
    .policy-title {
        font-size: 28px;
        line-height: 36px;
        text-align: left;
    }
    
    .policy-heading {
        font-size: 18px;
        line-height: 24px;
    }
    
    .policy-text p {
        font-size: 14px;
        line-height: 22px;
        text-align: left;
    }
    
    .policy-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .policy-thanks {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 80px 0 40px;
    }
    
    .policy-container {
        padding: 0 15px;
    }
    
    .policy-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .policy-heading {
        font-size: 16px;
        line-height: 22px;
    }
    
    .policy-text p {
        font-size: 13px;
        line-height: 20px;
    }
    
    .policy-subtitle {
        font-size: 14px;
        line-height: 20px;
    }
    
    .policy-thanks {
        font-size: 13px;
        line-height: 18px;
    }
}

/* ==============================================
   FOREIGNERS PAGE - Для іноземців
   ============================================== */

/* CSS smooth scroll removed - using JavaScript instead */

.foreign-main-section {
    background: #000000;
    padding: 139px 325px 60px 325px; /* Уменьшили отступ внизу */
}

.foreign-main-container {
    max-width: 1270px;
    margin: 0 auto;
}

/* Header at the top */
.foreign-main-header {
    text-align: left; /* Текст центруется к левой стороне */
    margin-bottom: 40px;
}

.foreign-main-layout {
    display: grid;
    grid-template-columns: 635px 1fr; /* Правая колонка шире на 10% */
    gap: 60px; /* Больше расстояние между колонками */
    width: 100%;
}

.foreign-main-left {
    min-width: 0;
    position: relative;
}

.foreign-main-right {
    min-width: 0;
}

.foreign-main-sticky {
    position: sticky;
    top: 100px;
}

.foreign-main-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.foreign-main-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 36.4px;
    color: #d9d9d9;
    text-transform: uppercase;
    letter-spacing: 3.92px;
    margin: 0 0 15px 0;
    width: 623px;
}

.foreign-main-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #d9d9d9;
    margin: 0 0 24px 0;
    width: 623px;
}

.foreign-main-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 505px;
}

.foreign-main-step {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 43px;
    width: 100%;
}

.foreign-main-step:last-child {
    margin-bottom: 0;
}

.foreign-main-step-number {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #f7931e;
    margin: 0 0 15px 0;
    width: 60px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foreign-main-step-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #d9d9d9;
    margin: 0;
    width: 505px;
}

.foreign-main-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 12px;
}

.foreign-main-photo-large {
    width: 100%;
    margin-bottom: 0;
}

.foreign-main-photos-row {
    display: flex;
    gap: 16px;
    width: 100%;
    align-items: stretch;
    height: 400px; /* Уменьшенная высота для обоих изображений */
}

.foreign-main-photo-small {
    display: flex;
    flex-direction: column;
}

/* 3.svg - левое изображение (уже) */
.foreign-main-photo-small:first-child {
    flex: 1;
    width: 100%;
}

/* 2.svg - правое изображение (шире) */
.foreign-main-photo-small:last-child {
    flex: 1.5;
    width: 60%;
}

.foreign-main-photo-small .foreign-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foreign-main-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Специальный стиль для объединенного изображения (3.svg) */
.foreign-main-gallery .foreign-main-photo-large:nth-child(2) .foreign-main-photo {
    /* Это изображение содержит два маленьких фото в одном */
    /* Можно добавить специальные стили если нужно */
    position: relative;
}

/* Responsive for Foreigners page */
@media (max-width: 1200px) {
    .foreign-main-section {
        padding: 100px 24px 40px 24px;
    }
    
    .foreign-main-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    /* Prevent overlap when stacked to one column */
    .foreign-main-left,
    .foreign-main-right,
    .foreign-main-sticky {
        position: static;
    }
    .foreign-main-gallery { margin-bottom: 16px; }
    .foreign-main-photos-row { height: auto; }
    .foreign-main-photo-small .foreign-main-photo { height: auto; }
    
    .foreign-main-title,
    .foreign-main-subtitle {
        width: 100%;
    }
    
    .foreign-main-steps {
        width: 100%;
    }
    
    .foreign-main-step-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .foreign-main-section {
        padding: 60px 16px 30px 16px;
    }
    
    /* Ensure images and text never overlap on small screens */
    .foreign-main-left,
    .foreign-main-right,
    .foreign-main-sticky { position: static; }
    .foreign-main-gallery { margin-bottom: 20px; }
    .foreign-main-photo-large img.foreign-main-photo { width: 100%; height: auto; display: block; }
    .foreign-main-photos-row { flex-direction: column; gap: 12px; height: auto; }
    .foreign-main-photo-small { width: 100%; }
    .foreign-main-photo-small .foreign-main-photo { width: 100%; height: auto; display: block; }
    .foreign-main-steps { width: 100%; }
    .foreign-main-step-text { width: 100%; }
    
    .foreign-main-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .foreign-main-step-number {
        font-size: 28px;
        line-height: 36px;
    }
    
    .foreign-main-step-text {
        font-size: 14px;
        line-height: 22px;
    }
    
    .foreign-main-sticky {
        position: static;
    }
    
    .foreign-main-photos-row {
        flex-direction: column;
    }
    
    .foreign-main-photo-small {
        width: 100%;
    }
}

/* Дополнительные улучшения для мобильных устройств */
@media (max-width: 768px) {
    /* Performance improvements removed - breaks position: fixed */
    
    /* Улучшаем читаемость текста */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Улучшаем touch targets */
    a, button, input, select, textarea {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    /* Улучшаем скроллинг */
    .hero-section,
    .gl2-section,
    .gl3-section,
    .gl4-section,
    .gl5-section,
    .gl6-section,
    .gl7-section,
    .gl8-section {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Улучшаем анимации для мобильных */
    .hero-button,
    .gl4-button,
    .gl6-button,
    .gl7-button,
    .gl8-button,
    .join-button {
        transition: transform 0.2s ease, opacity 0.2s ease;
    }
    
    .hero-button:active,
    .gl4-button:active,
    .gl6-button:active,
    .gl7-button:active,
    .gl8-button:active,
    .join-button:active {
        transform: scale(0.95);
    }
    
    /* Улучшаем отображение изображений */
    img {
        max-width: 100%;
        height: auto;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Улучшаем формы */
    input, textarea, select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 8px;
    }
    
    /* Улучшаем модальные окна */
    .modal-overlay {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
    
    /* Улучшаем FAQ аккордеон */
    .gl6-faq-question {
        -webkit-tap-highlight-color: transparent;
    }
    
    .gl6-faq-question:active {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    /* Accessibility improvements for mobile */
    .hero-button:focus,
    .gl4-button:focus,
    .gl6-button:focus,
    .gl7-button:focus,
    .gl8-button:focus,
    .join-button:focus {
        outline: 2px solid #f7931e;
        outline-offset: 2px;
    }
    
    /* Improve focus visibility */
    input:focus,
    textarea:focus,
    select:focus {
        outline: 2px solid #f7931e;
        outline-offset: 2px;
        border-color: #f7931e;
    }
    
    /* Better touch feedback */
    .hero-button,
    .gl4-button,
    .gl6-button,
    .gl7-button,
    .gl8-button,
    .join-button {
        -webkit-tap-highlight-color: rgba(247, 147, 30, 0.3);
    }
    
    /* Improve text contrast */
    .gl2-contact-label,
    .gl3-title-line-1,
    .gl3-title-line-2,
    .gl3-title-line-3,
    .gl4-title,
    .gl5-title,
    .gl6-title {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    /* Better spacing for touch targets */
    .gl6-faq-question {
        min-height: 48px;
        padding: 16px;
    }
    
    .gl7-input,
    .gl7-textarea {
        min-height: 48px;
        padding: 12px 16px;
    }
    
    /* Improve modal accessibility */
    .modal-close:focus {
        outline: 2px solid #f7931e;
        outline-offset: 2px;
    }
    
    /* Better error message visibility */
    .field-error {
        font-size: 14px;
        line-height: 1.4;
        margin-top: 8px;
        padding: 8px 12px;
        background: rgba(255, 0, 0, 0.1);
        border: 1px solid rgba(255, 0, 0, 0.3);
        border-radius: 4px;
    }
}

/* Extra small screens (up to 360px) - Additional improvements */
@media (max-width: 360px) {
    .modal-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 10000 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    .cookie-notification {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        background: #000000 !important;
        border-top: 1px solid #f7931e !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        transform: translateY(100%) !important;
        opacity: 0 !important;
        display: none !important;
        transition: all 0.3s ease !important;
    }
    .cookie-notification.show { transform: translateY(0) !important; opacity: 1 !important; display: block !important; }
    
    /* Hero section improvements */
    .hero-button {
        width: 220px;
        height: 45px;
    }
    
    .hero-button-text {
        font-size: 13px;
    }
    
    .hero-pagination {
        gap: 5px;
        bottom: 20px;
    }
    
    
    /* Form improvements */
    .gl7-input,
    .gl7-textarea {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 10px 14px;
    }
    
    /* Better spacing */
    .gl2-section,
    .gl3-section,
    .gl4-section,
    .gl5-section,
    .gl6-section,
    .gl7-section,
    .gl8-section {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Modal improvements */
    .modal-content {
        width: 98vw;
        height: 95vh;
        margin: 1vh 1vw;
    }
    
    .modal-background {
        border-radius: 8px;
    }
    
    /* Cookie notification improvements */
    .cookie-container {
        padding: 12px 8px;
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .cookie-text p {
        font-size: 12px;
        line-height: 18px;
    }
    
    .cookie-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* Final mobile optimizations */
@media (max-width: 768px) {
    /* Improve loading performance */
    .hero-slide {
        will-change: transform;
    }
    
    /* Better image loading - loading attribute should be in HTML */
    
    /* Optimize animations for mobile */
    .hero-slide,
    .gl6-faq-question {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    /* Improve scroll performance */
    .hero-section,
    .gl2-section,
    .gl3-section,
    .gl4-section,
    .gl5-section,
    .gl6-section,
    .gl7-section,
    .gl8-section {
        contain: unset;
    }
    
    /* Better text rendering */
    body {
        text-rendering: optimizeSpeed;
    }
    
    /* Improve button interactions */
    .hero-button,
    .gl4-button,
    .gl6-button,
    .gl7-button,
    .gl8-button,
    .join-button {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Better form interactions */
    .gl7-input,
    .gl7-textarea,
    .gl7-select {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
    
    /* Loading states and skeleton screens */
    .hero-slide img {
        transition: opacity 0.3s ease;
    }
    
    .hero-slide img[loading="lazy"] {
        opacity: 0;
    }
    
    .hero-slide img.loaded {
        opacity: 1;
    }
    
    /* Optimize font loading - fonts are loaded via Google Fonts link */
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* High contrast mode support */
    @media (prefers-contrast: high) {
        .hero-button,
        .gl4-button,
        .gl6-button,
        .gl7-button,
        .gl8-button,
        .join-button {
            border: 2px solid #ffffff;
        }
        
        .gl7-input,
        .gl7-textarea,
        .gl7-select {
            border: 2px solid #ffffff;
        }
    }
}

/* Additional mobile UX improvements */
@media (max-width: 768px) {
    /* Improved touch feedback for interactive elements */
    .gl6-faq-question,
    .modal-close,
    .cookie-btn,
    .social-link {
        -webkit-tap-highlight-color: rgba(247, 147, 30, 0.2);
        transition: transform 0.1s ease, background-color 0.1s ease;
    }
    
    .gl6-faq-question:active,
    .modal-close:active,
    .cookie-btn:active,
    .social-link:active {
        transform: scale(0.98);
    }
    
    /* Better scroll indicators */
    .scroll-indicator {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 50px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 15px;
        z-index: 100;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .scroll-indicator.show {
        opacity: 1;
    }
    
    .scroll-indicator::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 8px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 2px;
        animation: scrollBounce 2s infinite;
    }
    
    @keyframes scrollBounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(10px);
        }
        60% {
            transform: translateX(-50%) translateY(5px);
        }
    }
    
    /* Improved form interactions */
    .gl7-input:focus,
    .gl7-textarea:focus,
    .gl7-select:focus {
        transform: scale(1.02);
        box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.2);
    }
    
    /* Better loading states */
    .loading-skeleton {
        background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
    }
    
    @keyframes loading {
        0% {
            background-position: 200% 0;
        }
        100% {
            background-position: -200% 0;
        }
    }
    
    /* Improved accessibility for touch devices */
    .gl6-faq-question:focus,
    .modal-close:focus,
    .cookie-btn:focus {
        outline: 2px solid #f7931e;
        outline-offset: 2px;
    }
    
    /* Better visual feedback for form validation */
    .gl7-input.error,
    .gl7-textarea.error {
        border-color: #ff4444;
        box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.2);
    }
    
    .gl7-input.success,
    .gl7-textarea.success {
        border-color: #44ff44;
        box-shadow: 0 0 0 2px rgba(68, 255, 68, 0.2);
    }
    
    
    /* Better image loading states */
    .hero-slide img {
        transition: opacity 0.3s ease;
    }
    
    .hero-slide img[loading="lazy"] {
        opacity: 0;
    }
    
    .hero-slide img.loaded {
        opacity: 1;
    }
    
    /* Improved modal interactions */
    .modal-overlay {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
    
    /* Better FAQ interactions */
    .gl6-faq-question {
        -webkit-tap-highlight-color: transparent;
    }
    
    .gl6-faq-question:active {
        background-color: rgba(247, 147, 30, 0.1);
    }
}

/* FORCE MOBILE PAGINATION STYLES - MAXIMUM SPECIFICITY */
@media (max-width: 768px) {
    .hero-section .hero-container .hero-pagination button.pagination-dot {
        width: 12px !important;
        height: 12px !important;
        border-radius: 50% !important;
        border: 2px solid rgba(255, 255, 255, 0.8) !important;
        background: rgba(255, 255, 255, 0.4) !important;
        min-width: 12px !important;
        min-height: 12px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-section .hero-container .hero-pagination button.pagination-dot {
        width: 10px !important;
        height: 10px !important;
        border-radius: 50% !important;
        border: 2px solid rgba(255, 255, 255, 0.8) !important;
        background: rgba(255, 255, 255, 0.4) !important;
        min-width: 10px !important;
        min-height: 10px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

@media (max-width: 360px) {
    .hero-section .hero-container .hero-pagination button.pagination-dot {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        border: 2px solid rgba(255, 255, 255, 0.8) !important;
        background: rgba(255, 255, 255, 0.4) !important;
        min-width: 8px !important;
        min-height: 8px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Loading animation for pull to refresh */
@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Touch gesture feedback */
@media (max-width: 768px) {
    /* Swipe indicators for hero slider */
    .hero-section::before,
    .hero-section::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 10;
    }
    
    .hero-section::before {
        left: 20px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
        background-size: 12px;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-section::after {
        right: 20px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
        background-size: 12px;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    /* Show swipe indicators on touch */
    .hero-section.touch-active::before,
    .hero-section.touch-active::after {
        opacity: 1;
    }
    
    /* Improved touch feedback for buttons */
    .hero-button,
    .gl4-button,
    .gl6-button,
    .gl7-button,
    .gl8-button,
    .join-button {
        position: relative;
        overflow: hidden;
    }
    
    .hero-button::before,
    .gl4-button::before,
    .gl6-button::before,
    .gl7-button::before,
    .gl8-button::before,
    .join-button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
        pointer-events: none;
    }
    
    .hero-button:active::before,
    .gl4-button:active::before,
    .gl6-button:active::before,
    .gl7-button:active::before,
    .gl8-button:active::before,
    .join-button:active::before {
        width: 200px;
        height: 200px;
    }
}