/* Gilroy Font Face - подключение локальных файлов шрифта */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/GILROY-LIGHT.TTF') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/GILROY-REGULAR.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/GILROY-MEDIUM.TTF') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/GILROY-SEMIBOLD.TTF') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/GILROY-BOLD.TTF') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/GILROY-EXTRABOLD.TTF') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background-color: #111111;

}

/* Global Red Scrollbar - Cross-browser support */
/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #B7140F #1A1A1A;
    scroll-behavior: smooth;
}

/* WebKit browsers (Chrome, Safari, Edge) */
html::-webkit-scrollbar {
    width: 12px;
}

html::-webkit-scrollbar-track {
    background: #1A1A1A;
}

html::-webkit-scrollbar-thumb {
    background: #B7140F;
    border-radius: 30px;
    border: 2px solid #1A1A1A;
}

html::-webkit-scrollbar-thumb:hover {
    background: #E50000;
}

/* Apply to body as well for better compatibility */
body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #1A1A1A;
}

body::-webkit-scrollbar-thumb {
    background: #B7140F;
    border-radius: 30px;
    border: 2px solid #1A1A1A;
}

body::-webkit-scrollbar-thumb:hover {
    background: #E50000;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 45px 0;
}

/* Blur фон через CSS (аналог SVG фильтра) */
.header-blur-bg {
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #111111;
    filter: blur(22px);
    z-index: -2;
    pointer-events: none;
    /* margin: 0 -100px; */
    /* padding: 0 100px; */
}

/* Затемнение через SVG изображение для хедера */
.header-overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/Rectangle%2091.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

/* CSS блюр эффект (аналог SVG фильтра) */
.blur-effect {
    position: relative;
    background-color: #111111;
    filter: blur(50px);
    /* Для более точного соответствия SVG фильтру можно использовать: */
    /* backdrop-filter: blur(50px); - для размытия фона за элементом */
}

/* Альтернативный вариант с backdrop-filter для размытия фона */
.blur-backdrop {
    position: relative;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

/* Вариант с box-shadow для создания эффекта размытого свечения */
.blur-shadow {
    position: relative;
    background-color: #111111;
    box-shadow: 0 0 100px 50px rgba(17, 17, 17, 0.8);
    filter: blur(50px);
}
    
.header-container {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo span {
    color: #FB0C04;
    font-size: 20px;
    font-weight: 700;
}
.nav-arrow-d{
    display: flex;
    gap: 35px;
}
.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.language-selector {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
}

.language-selector span {
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector span:hover {
    opacity: 0.7;
}

.language-selector .lang-active {
    color: #E50000;
    font-weight: 500;
}

.cta-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.cta-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #B7140F;
    transition: width 0.3s ease;
}

.cta-link:hover::after {
    width: 100%;
}

.cta-link-arrow {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    display: inline-block;
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Разные размеры линий бургер-меню */
.burger-line:nth-child(1) {
    width: 50%;
}

.burger-line:nth-child(2) {
    width: 75%;
}

.burger-line:nth-child(3) {
    width: 100%;
}

/* Burger menu animation when active */
.burger-menu-active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    width: 100%;
}

.burger-menu-active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu-active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    width: 100%;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #111111;
    z-index: 999;
    padding: 100px 20px 40px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    align-items: center;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.mobile-nav-link:hover {
    opacity: 0.7;
}

.mobile-language-selector {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
}

.mobile-language-selector span {
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-language-selector span:hover {
    opacity: 0.7;
}

.mobile-language-selector .mobile-lang-active {
    color: #E50000;
    font-weight: 500;
}

.mobile-cta-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.mobile-cta-link:hover {
    color: #ffffff;
}

.mobile-cta-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #B7140F;
    transition: width 0.3s ease;
}

.mobile-cta-link:hover::after {
    width: 100%;
}

.mobile-cta-link-arrow {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    display: inline-block;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.notification {
    display: inline-block;
    margin-left: 5px;
    font-size: 12px;
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Bottom Fade Overlay - плавное затемнение, скрывает границу фотографии */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    min-height: 400px;
    background: linear-gradient(to top, 
        rgba(17, 17, 17, 1) 0%,
        rgba(17, 17, 17, 0.95) 15%,
        rgba(17, 17, 17, 0.85) 30%,
        rgba(17, 17, 17, 0.6) 50%,
        rgba(17, 17, 17, 0.3) 70%,
        rgba(17, 17, 17, 0.1) 85%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Bottom Blur Background (CSS blur эффект) */
.hero-bottom-blur-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    min-height: 500px;
    background-color: #111111;
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
    /* Плавный переход сверху вниз */
    mask-image: linear-gradient(to top, 
        black 0%, 
        black 25%, 
        rgba(0, 0, 0, 0.9) 40%,
        rgba(0, 0, 0, 0.7) 55%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.1) 85%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(to top, 
        black 0%, 
        black 25%, 
        rgba(0, 0, 0, 0.9) 40%,
        rgba(0, 0, 0, 0.7) 55%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.1) 85%,
        transparent 100%
    );
}

/* Bottom Blur Overlay (SVG) */
.hero-bottom-blur {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    min-height: 600px;
    background-image: url('../img/Rectangle%2090.svg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
    /* Плавный переход сверху вниз */
    mask-image: linear-gradient(to top, 
        black 0%, 
        black 20%, 
        rgba(0, 0, 0, 0.8) 40%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.1) 80%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(to top, 
        black 0%, 
        black 20%, 
        rgba(0, 0, 0, 0.8) 40%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.1) 80%,
        transparent 100%
    );
}

/* Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/rectangle-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Dark Overlay - This creates the darkness effect */
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 1280px;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Blur Background for Title */
.hero-title-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 600px;
    max-width: 90vw;
    background-image: url('../img/Ellipse%2015.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    opacity: 0.9;
}

/* Repeating Keywords */
.hero-transparent-text {
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    padding: 0 20px;
}

.transparent-text-content {
    color: #ffffff52;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 0;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Date and Location */
.date-location {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 33px;
}

/* Main Title */
.main-title {
    font-size: 128px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 0.9;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.title-white {
    color: #ffffff;
}

.title-red {
    color: #FB0C04;
}

/* Red Separator Line */
.red-separator {
    width: 100%;
    height: 2px;
    background-color: #B7140F;
    margin: 0 auto 33px;
}

/* Primary Subtitle */
.primary-subtitle {
    color: #ffffff;
    font-size: 34px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 33px;
}

/* Secondary Subtitle */
.secondary-subtitle {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 61px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #B7140F;
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 18px 50px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

/* Video Section */
.video-section {
    padding: 200px 0;
    display: flex;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
}

.video-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Video Header */
.video-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 30px;
}

.video-title {
    color: #ffffff;
    font-size: 82px;
    font-weight: 500;
    margin: 0;
    line-height: 0.9;
}

.video-slogan {
    color: #B7140F;
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

/* Mobile slogan - скрыт по умолчанию на десктопе */
.video-slogan-mobile {
    display: none;
}

/* На десктопе разделитель занимает всю ширину */
.video-separator-wrapper {
    width: 100%;
}

/* Video Wrapper */
.video-wrapper {
    width: 100%;
    margin-bottom: 60px;
}

.video-player {
    position: relative;
    width: 100%;
    padding-bottom: 45%; /* 16:9 aspect ratio */
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    background-image: url('../img/video-photo.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #ff0000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.play-button:hover {
    background-color: #cc0000;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 0, 0, 0.6);
}

.play-button svg {
    margin-left: 4px; /* Смещение треугольника для визуального центрирования */
}

/* Video Separator */
.video-separator-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.video-separator {
    flex: 1;
    height: 2px;
    background-color: #B7140F;
    min-width: 0; /* Позволяет разделителю сжиматься */
}

/* Benefits Section */
.benefits-section {
    display: flex;
    align-items: center;
}

.benefits-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Benefits Label */
.benefits-label {
    color: #B7140F;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Benefits Title */
.benefits-title {
    color: #ffffff;
    font-size: 82px;
    font-weight: 500;
    margin-bottom: 60px;
    text-align: center;
}

/* Benefits Cards Container */
.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-center-wrapper{
    max-width: 1468px;
    margin: 0 auto;
    width: 100%;
}
/* Benefit Card */
.benefit-card {
    background-color: #B7140F;
    border-radius: 30px;
    padding: 40px;
    width: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.card-number {
    color: #ffffff;
    font-size: 52px;
    font-weight: 500;
}

.card-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

.card-description {
    color: #ffffff;
    font-size: 34px;
    font-weight: 400;
    margin: 0;
}






/* Business Areas Section */
.business-areas-section {
    padding: 60px 0 0;
    display: flex;
    align-items: center;
}

.business-areas-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Business Areas Title */
.business-areas-title {
    color: #FFFFFF;
    font-size: 52px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 60px;
}

/* Business Areas Cards Container */
.business-areas-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

/* Business Area Card */
.business-area-card {
    background-color: #1F1F1F;
    border-radius: 30px;
    padding: 30px 40px;
    width: 100%;
}

.business-card-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.business-card-number {
    color: #b7140f;
    font-size: 52px;
    font-weight: 500;
    /* letter-spacing: 1px; */
    /* min-width: 50px; */
    flex-shrink: 0;
}

.business-card-text {
    flex: 1;
}

.business-card-title {
    color: #FFFFFF;
    font-size: 52px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.business-card-description {
    color: #ffffff;
    font-size: 34px;
    font-weight: 500;
    margin: 0;
}

/* Business Areas Separator */
.business-areas-separator {
    width: 60%;
    height: 2px;
    background-color: #b7140f;
    margin-left: auto;
    margin-right: 0;
}


/* Sponsors Section */
.sponsors-section {
    padding: 200px 0 60px;
    display: flex;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
}

.sponsors-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Sponsors Title */
.sponsors-title {
    color: #FFFFFF;
    font-size: 82px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 60px;
}

/* General Sponsor Section */
.general-sponsor-section {
    margin-bottom: 60px;
}

.general-sponsor-subtitle {
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.general-sponsor-container {
    background-color: #1F1F1F;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.logo-placeholder {
    width: 100%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 20px;
}

.logo-placeholder-text {
    color: #B7140F;
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
}

.sponsor-logo {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.sponsor-cta-button {
    display: inline-block;
    background-color: #B7140F;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 18px 50px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.sponsor-cta-button:hover {
    background-color: #cc2d28;
    transform: translateY(-2px);
}

/* Residents Section */
.residents-section {
    margin-bottom: 50px;
}

.residents-subtitle {
    color: #FFFFFF;
    font-size: 52px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.residents-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.residents-grid {
    display: flex;
    gap: 0;
    transition: transform 0.5s ease;
    width: 300%;
}

.residents-page {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    width: 33.333333%;
    flex-shrink: 0;
}

.resident-logo {
    width: 100%;
    min-width: 0;
}

.logo-box {
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 30px 20px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.logo-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    width: 150px;
    height: 130px;
    object-fit: contain;
}

.logo-text {
    display: block;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

/* Sponsors Navigation */
.sponsors-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow-left {
    background-color: #262626;
}

.nav-arrow-left:hover:not(.disabled) {
    background-color: #B7140F;
}

.nav-arrow-left.disabled {
    background-color: #262626 !important;
    cursor: not-allowed;
    opacity: 0.5 !important;
}

.nav-arrow-left.disabled:hover {
    background-color: #262626 !important;
}

.nav-arrow-right {
    background-color: #262626;
}

.nav-arrow-right:hover:not(.disabled) {
    background-color: #B7140F;
}

.nav-arrow-right.disabled {
    background-color: #262626 !important;
    cursor: not-allowed;
    opacity: 0.5 !important;
}

.nav-arrow-right.disabled:hover {
    background-color: #262626 !important;
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}

.nav-arrow-left svg path {
    stroke: #FFFFFF;
}



/* Benefits Event Section */
.benefits-event-section {
    display: flex;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
}

.benefits-event-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Benefits Event Header */
.benefits-event-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 200px;
    position: relative;
}

.benefits-event-label-left {
    color: #B7140F;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    flex-shrink: 0;
}

.benefits-event-header-line {
    width: 60%;
    height: 2px;
    background-color: #b7140f;
    margin: 0 20px;
}
.speakers-header{
    margin-bottom: 35px;
}
.benefits-event-label-right {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Benefits Event Title */
.benefits-event-title {
    color: #FFFFFF;
    font-size: 82px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 30px;
}

/* Benefits Event Grid */
.benefits-event-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.benefit-event-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.benefit-number {
    color: #B7140F;
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 10px;
}

.benefit-dot {
    width: 12px;
    height: 12px;
    background-color: #B7140F;
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.benefit-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.benefit-description {
    color: #959595;
    font-size: 26px;
    font-weight: 400;
    margin: 0;
}

/* Connecting Line */
.benefits-event-grid::before {
    content: '';
    position: absolute;
    top: 93px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #353535;
    z-index: 1;
}

/* Benefits Event CTA */
.benefits-event-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.benefits-event-button {
    display: inline-block;
    background-color: #C62520;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 50px;
    border-radius: 8px;
    border: 1px solid #C62520;
    transition: all 0.3s ease;
}

.benefits-event-button:hover {
    background-color: #b0201c;
    border-color: #b0201c;
    transform: translateY(-2px);
}





/* Speakers Section */
.speakers-section {
    padding: 200px 0 0;
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: 1920px;
}

.speakers-container {
    
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Speakers Top Label */
.speakers-top-label {
    color: #b7140f;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Speakers Title */
.speakers-title-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 0;
    margin-bottom: 60px;
    position: relative;
}

.speakers-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.speakers-title-line {
    height: 2px;
    background-color: #b7140f;
    flex: 1;
    margin-left: 20px;
    margin-bottom: 8px;
    max-width: 200px;
}

/* Speakers Footer */
.speakers-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.speakers-nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
    touch-action: manipulation;
}

.speakers-nav-left {
    border-color: #262626;
    background-color: #262626;
}

.speakers-nav-left:hover:not(.disabled) {
    background-color: #B7140F;
    border-color: #B7140F;
}

.speakers-nav-left.disabled {
    background-color: #262626 !important;
    border-color: #262626 !important;
    cursor: not-allowed;
    opacity: 0.5 !important;
}

.speakers-nav-left.disabled:hover {
    background-color: #262626 !important;
    border-color: #262626 !important;
}

.speakers-nav-right {
    border: none;
    background-color: #262626;
}

.speakers-nav-right:hover:not(.disabled) {
    background-color: #B7140F;
}

.speakers-nav-right.disabled {
    background-color: #262626 !important;
    cursor: not-allowed;
    opacity: 0.5 !important;
}

.speakers-nav-right.disabled:hover {
    background-color: #262626 !important;
}

.speakers-nav-arrow svg {
    width: 24px;
    height: 24px;
}

/* Speakers Carousel Wrapper */
.speakers-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 60px auto;
    position: relative;
    box-sizing: border-box;
    max-width: 100%;
}

/* Speakers Cards Container */
.speakers-cards-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    box-sizing: border-box;
    transition: transform 0.5s ease;
    will-change: transform;
    min-width: 100%;
}

/* Speaker Card */
.speaker-card {
    flex: 0 0 calc(50% - 30px);
    width: calc(50% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    overflow: visible;
}

/* Speaker Image Wrapper */
.speaker-image-wrapper {
    max-width: 890px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 0.9;
}

.speaker-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    border-radius: 30px;
}

/* Speaker Name */
.speaker-name {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    text-align: center;
}

/* Speaker Description */
.speaker-description {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    text-align: left;
    width: 100%;
    padding: 0 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Speakers Bottom Line */
.speakers-bottom-line {
    width: 60%;
    height: 2px;
    background-color: #b7140F;
}






/* Program Section */
.program-section {
    padding: 160px 0 200px;
}

.program-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Program Top Label */
.program-top-label {
    color: #b7140F;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 auto;
    max-width: 1920px;
}

.program-top-line {
    width: 100%;
    height: 2px;
    background-color: #b7140F;
    margin-bottom: 40px;
}

/* Program Banner */
.program-banner {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin: 60px 0;
    border-radius: 30px;
}

.program-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.program-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.program-banner-content {
    position: relative;
    z-index: 3;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 422px;
    justify-content: center;
}

.banner-title-white {
    color: #FFFFFF;
    font-size: 52px;
    font-weight: 500;
    max-width: 1311px;
    text-transform: uppercase;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

.banner-title-red {
    color: #b7140F;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.banner-title-desktop {
    display: inline;
}

.banner-title-mobile {
    display: none;
}

.banner-subtitle {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.banner-title-large {
    color: #FFFFFF;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 60px 0;
    line-height: 1.2;
}

/* Program Event Details */
.program-event-details {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1478px;
    justify-content: space-between;
    align-items: flex-start;
}

.event-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1 1 0;
    min-width: 0;
}

.detail-icon {
    flex-shrink: 0;
    width: 47px;
    height: 47px;
    object-fit: contain;
}

.detail-text {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 500;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

/* Program Schedule */


.program-schedule-title {
    color: #FFFFFF;
    font-size: 82px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
}

.program-schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    width: 1478px;
    margin: 0 auto;
    justify-items: end;
}
.program-item-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.program-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.program-item {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.program-item-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.program-number {
    color: #b7140F;
    font-size: 64px;
    font-weight: 500;
    width: 70px;
}

.program-time {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 500;
}

.program-activity-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
}

.program-activity-description {
    color: #959595;
    font-size: 26px;
    font-weight: 400;
    margin: 0;
}

/* Program CTA */
.program-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.program-cta-button {
    display: inline-block;
    background-color: #E50000;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 60px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.program-cta-button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}




/* Features Section */
.features-section {
    display: flex;
    align-items: center;
}

.features-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Features Main Title */
.features-main-title {
    max-width: 1440px;
    margin: 0 auto;
    color: #FFFFFF;
    font-size: 52px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

/* Features Secondary Title */
.features-secondary-title {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 80px 0;
    line-height: 1.4;
}

.features-title-red {
  color: #b7140F;
}

.features-title-desktop {
    display: inline;
}

.features-title-mobile {
    display: none;
}

/* Features Columns */
.features-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 100px;
}

.feature-column {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 30px;
}

.feature-column::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background-color: #B7140F;
}

.feature-column-title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    text-align: center;
}

.feature-column-description {
    color: #464646;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

/* Features Bottom Line */
.features-bottom-line {
    width: 100%;
    height: 2px;
    background-color: #B7140F;
}




/* Pricing Section */
.pricing-section {
    padding: 200px 0;
    max-width: 1920px;
    margin: 0 auto;
}

.pricing-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Pricing Top Label */
.pricing-top-label {
    color: #B7140F;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Pricing Main Title */
.pricing-main-title {
    color: #FFFFFF;
    font-size: 82px;
    font-weight: 500;
    letter-spacing: -3px;
    text-transform: uppercase;
    text-align: center;
    line-height: 0.9;
    margin-bottom: 60px;
}

/* Pricing Sub Title */
.pricing-sub-title {
    color: #FFFFFF;
    font-size: 100px;
    font-weight: 500;
    letter-spacing: -3px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 40px 0;
    /* line-height: 1.2; */
}

.pricing-sub-title-red {
    color: #b7140F;
}

/* Pricing Intro Text */
.pricing-intro-text {
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 500;
    /* letter-spacing: -1px; */
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 80px 0;
    /* line-height: 1.4; */
}

/* Pricing Cards */
.pricing-cards-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    overflow-x: hidden;
}

/* Pricing Navigation */
.pricing-navigation {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.pricing-nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #262626;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.pricing-nav-arrow:hover:not(.disabled) {
    background-color: #B7140F;
}

.pricing-nav-arrow.disabled {
    background-color: #262626 !important;
    cursor: not-allowed;
    opacity: 0.5 !important;
}

.pricing-nav-arrow.disabled:hover {
    background-color: #262626 !important;
}

.pricing-nav-arrow svg {
    width: 24px;
    height: 24px;
}

.pricing-nav-right {
    background-color: #262626;
}

.pricing-nav-right:hover:not(.disabled) {
    background-color: #B7140F;
}

.pricing-nav-right.disabled {
    background-color: #262626 !important;
    cursor: not-allowed;
    opacity: 0.5 !important;
}

.pricing-nav-right.disabled:hover {
    background-color: #262626 !important;
}

.pricing-page-indicator {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    min-width: 40px;
    text-align: center;
}

.pricing-card {
    background-color: transparent;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Pricing Card Header */
.pricing-card-header {
    position: relative;
    padding: 20px;
    border-radius: 30px 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 94px;
}

.pricing-card-header-silver {
    background-image: url('../img/silver.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-card-header-gold {
    background-image: url('../img/gold.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-card-header-diamond {
    background-image: url('../img/diamond.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



/* Discount Badge */
.pricing-discount-badge {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #E50000;
    padding: 8px 12px;
    transform: rotate(-5deg);
    border-radius: 0 0 8px 0;
}

.discount-circle {
    width: 8px;
    height: 8px;
    background-color: #FFFFFF;
    border-radius: 50%;
}

.discount-text {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Pricing Tier Name */
.pricing-tier-name {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.pricing-tier-name-diamond {
    color: #ffffff;
}

/* Pricing Card Body */
.pricing-card-body {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 0 0 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-top-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0;
    flex: 0 0 auto;
}

.pricing-tagline {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0 0 25px 0;
    text-align: center;
    flex-shrink: 0;
    min-height: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Pricing Divider */
.pricing-divider {
    width: 100%;
    height: 2px;
    background-color: #b7140f;
    margin: 0 0 20px;
    flex-shrink: 0;
}

/* Pricing Included */
.pricing-included {
    margin-bottom: 25px;
    flex: 0 0 auto;
}

.pricing-included-title {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 400;
    margin: 0 0 15px 0;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features-list li {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.pricing-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
}

/* Pricing Bonus */
.pricing-bonus {
    margin-bottom: 27px;
    flex: 0 0 auto;
}

.pricing-bonus-title {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 10px 0;
}

.pricing-bonus-text {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 500;
    margin: 0;
}

/* Pricing CTA Button */
.pricing-cta-button {
    display: block;
    background-color: #b7140f;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 18px 30px;
    border-radius: 30px;
    text-align: center;
    margin-top: auto;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.pricing-cta-button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

/* Pricing Disclaimer */
.pricing-disclaimer {
    color: #959595;
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    padding-bottom: 14px;
    flex: 0 0 auto;
}




/* Countdown Section */
.countdown-section {
    display: flex;
    align-items: center;
}

.countdown-container {
    margin: 0 auto;
    max-width: 1920px;
    padding: 0 40px;
    width: 100%;
}

/* Countdown Info Text */
.countdown-info-text {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 60px 0;
}

/* Countdown Wrapper */
.countdown-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

/* Countdown Left Text */
.countdown-left-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-self: start;
}

.countdown-urgency-text {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.countdown-remaining-text {
    color: #FFFFFF;
    font-size: 26px;
    letter-spacing: -1px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 20px;
    justify-self: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    color: #b7140f;
    font-size: 100px;
    font-weight: 500;
    margin-bottom: 10px;
}

.countdown-label {
    color: #B1B1B1;
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
}

.countdown-separator {
    color: #b7140f;
    font-size: 100px;
    font-weight: 400;
}

/* Countdown Bottom Line */
.countdown-bottom-line {
    width: 60%;
    height: 2px;
    margin-left: auto;
    margin-right: 0;
    background-color: #b7140f;
}





/* Participants Section */
.participants-section {
    padding: 200px 0;
    max-width: 1920px;
    margin: 0 auto;
}

.participants-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Participants Header */
.participants-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.participants-main-title {
    color: #FFFFFF;
    font-size: 82px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.participants-subtitle {
    color: #B7140f;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Participants Carousel */
.participants-carousel-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.participants-carousel {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.participant-card {
    padding: 0;
    width: calc((100% - 80px) / 3);
    min-width: calc((100% - 80px) / 3);
    max-width: calc((100% - 80px) / 3);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Participant Photo */
.participant-photo-wrapper {
    width: 100%;
}

.participant-photo {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background-color: #000000;
    border-radius: 30px;
    overflow: hidden;
}

.participant-photo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.participant-photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 14px;
}

/* Participant Info */
.participant-name {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 15px 0 10px 0;
    text-align: center;
}

.participant-company {
    color: #B1B1B1;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.participant-description {
    color: #B1B1B1;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    flex: 1;
    margin-bottom: 30px;
}

/* Participant CTA Button */
.participant-cta-button {
    display: block;
    background-color: #B7140f;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 25px 0;
    border-radius: 30px;
    text-align: center;
    margin-top: auto;
    transition: all 0.3s ease;
}

.participant-cta-button:hover {
    background-color: #cc0000;
}

/* Participants Navigation */
.participants-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.participants-page-indicator {
    display: none;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    min-width: 40px;
    text-align: center;
}

.participants-nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #262626;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.participants-nav-arrow:hover:not(.disabled) {
    background-color: #B7140F;
}

.participants-nav-arrow.disabled {
    background-color: #262626 !important;
    cursor: not-allowed;
    opacity: 0.5 !important;
}

.participants-nav-arrow.disabled:hover {
    background-color: #262626 !important;
}

.participants-nav-arrow svg {
    width: 24px;
    height: 24px;
}

.participants-nav-line {
    position: absolute;
    left: 50px;
    right: 50px;
    height: 2px;
 background-color: #b7140f;
    z-index: 1;
}





/* Reviews Section */

.reviews-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1920px;
}

/* Reviews Header */
.reviews-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.reviews-main-title {
    color: #FFFFFF;
    font-size: 82px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

.reviews-header-line {
    flex: 1;
    height: 2px;
    background-color: #b7140f;
    margin: 0 30px;
    margin-bottom: 8px;
}

.reviews-subtitle {
    color: #B7140F;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Reviews Wrapper */
.reviews-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.reviews-nav-arrow {
    display: flex;
}

/* Reviews Grid */
.reviews-grid-wrapper {
    overflow: hidden;
    position: relative;
    flex: 1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 100px;
    flex: 1;
    transition: transform 0.3s ease;
}

.reviews-navigation {
    display: none;
}

.reviews-page-indicator {
    display: none;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    min-width: 40px;
    text-align: center;
}

.review-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    min-height: 591px;
}

/* Review Avatar */


.review-avatar-circle {
    border-radius: 50%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.review-avatar-icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Review Role */
.review-role {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Review Text */
.review-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    text-align: left;
}

/* Reviews Navigation */
.reviews-nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.reviews-nav-left {
    background-color: #262626;
}

.reviews-nav-left:hover:not(.disabled) {
    background-color: #B7140F;
}

.reviews-nav-left.disabled {
    background-color: #262626 !important;
    cursor: not-allowed;
    opacity: 0.5 !important;
}

.reviews-nav-left.disabled:hover {
    background-color: #262626 !important;
}

.reviews-nav-right {
    background-color: #262626;
}

.reviews-nav-right:hover:not(.disabled) {
    background-color: #B7140F;
}

.reviews-nav-right.disabled {
    background-color: #262626 !important;
    cursor: not-allowed;
    opacity: 0.5 !important;
}

.reviews-nav-right.disabled:hover {
    background-color: #262626 !important;
}

.reviews-nav-arrow svg {
    width: 24px;
    height: 24px;
}




/* FAQ Section */
.faq-section {
    padding: 0 0 200px;
}

.faq-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1920px;
}

/* FAQ Header */
.faq-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.faq-main-title {
    color: #FFFFFF;
    font-size: 82px;
    font-weight: 500;
    letter-spacing: -3px;
    margin: 0;
}

.faq-subtitle {
    color: #b7140f;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    padding-left: 15px;
}



/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #B7140F;
    padding: 40px 0;
}

.faq-item:first-child {
    border-top: 1px solid #B7140F;
}



/* FAQ Question Wrapper */
.faq-question-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    cursor: pointer;
    user-select: none;
}

.faq-number {
    color: #b7140f;
    font-size: 64px;
    font-weight: 500;
    flex-shrink: 0;
    min-width: 73px;
}

.faq-question {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #b7140f;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
}

.faq-toggle:hover {
    background-color: #cc1727;
}

.faq-toggle svg {
    width: 24px;
    height: 24px;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: 123px !important;
    margin-top: 0;
}

.faq-item-active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    margin-top: 20px;
    padding-left: 123px !important;
}

.faq-answer-text {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 400;
    margin: 0 0 15px 0;
    padding-left: 0;
}

.faq-answer-paragraph {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 400;
    margin: 0;
    padding-left: 0;
}

/* Active State - Change Arrow Direction */
.faq-item-active .faq-toggle svg {
    transform: rotate(90deg);
}




/* Footer */
.footer {
    padding: 120px 0;
    max-width: 1920px;
    margin: 0 auto;
}

.footer-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* Footer Left Section - Brand */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand-name {
    color: #FB0C04;
    font-size: 100px;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 20px 0;
    letter-spacing: -3px;
}

.footer-tagline-line {
    display: flex;
    align-items: baseline;

}

.footer-tagline-white {
    color: #FFFFFF;
    font-size: 52px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.footer-tagline-red {
    color: #FF0000;
    font-size: 52px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Footer Right Section */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
    flex: 1;
    max-width: 60%;
}

.footer-right-top {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    padding-left: 0px;
    gap: 100px;
}

.footer-social-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-social-text-link {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-social-text-link:hover {
    color: #FF0000;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.footer-nav-link {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-nav-link:hover {
    color: #FF0000;
}

.footer-right-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 100px;
}

.footer-policy-link {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-policy-link:hover {
    color: #FF0000;
}

.footer-copyright-text {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 400;
    margin: 0;
}

.footer-language {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 400;
}

.footer-lang-active {
    color: #FF0000;
}

.footer-lang {
    color: #FFFFFF;
}
/* Responsive Design */






/* Gallery Section */

.gallery-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Gallery Header */
.gallery-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.gallery-main-title {
    color: #FFFFFF;
    font-size: 82px;
    font-weight: 500;
    letter-spacing: -3px;
    text-transform: uppercase;
    margin: 0;
}

.gallery-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Gallery Grid */
.gallery-section {
    padding: 200px 0;
    max-width: 1920px;
    margin: 0 auto;
}

/* Gallery Slider Wrapper (Desktop - hidden) */
.gallery-slider-wrapper {
    display: none;
}

/* Gallery Slider Navigation (Desktop - hidden) */
.gallery-slider-navigation {
    display: none;
}

/* Desktop Gallery Grids (visible on desktop) */
.gallery-grid-desktop {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    grid-auto-rows: auto;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
}

/* Photo 2 (center tall) - spans 2 rows in column 2 */
.gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 2;
    aspect-ratio: auto;
    height: auto;
}

.gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.2;
    background-color: #000000;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Hide mobile-only items on desktop */
.gallery-item-mobile-only {
    display: none;
}



.gallery-item-tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 30px;
}

/* Gallery Grid 2 - Second Row with 6 Photos */
.gallery-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    grid-auto-rows: auto;
    gap: 10px;
    width: 100%;
    margin: 10px auto 0;
    padding: 0;
    border-radius: 0;
    align-items: stretch;
}

.gallery-grid-2 .gallery-item {
    position: relative;
    width: 100%;
    background-color: #000000;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Photo 1 - 20% width */
.gallery-grid-2 .gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 1 / 1.2;
}

/* Photo 2 - 20% width */
.gallery-grid-2 .gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 4 / 3;
}

/* Photo 3 - 40% width */
.gallery-grid-2 .gallery-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
    aspect-ratio: 18 / 9;
}

/* Photo 4 - 20% width */
.gallery-grid-2 .gallery-item:nth-child(4) {
    grid-column: 4;
    grid-row: 1;
    aspect-ratio: 1 / 1;
}

/* Photo 5 - Extra photo */
.gallery-grid-2 .gallery-item:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 4 / 3;
}

/* Photo 6 - Extra photo */
.gallery-grid-2 .gallery-item:nth-child(6) {
    grid-column: 2 / span 3;
    grid-row: 2;
    aspect-ratio: 16 / 9;
}

/* Photo 7 - Extra photo if exists */
.gallery-grid-2 .gallery-item:nth-child(7) {
    grid-column: 1 / span 4;
    grid-row: 3;
    aspect-ratio: 16 / 9;
}

.gallery-grid-2 .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 30px;
}

/* Gallery Grid 3 - 60% and 40% width */
.gallery-grid-3 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-auto-rows: auto;
    gap: 10px;
    width: 100%;
    margin: 10px auto 0;
    padding: 0;
    border-radius: 0;
    align-items: stretch;
}

.gallery-grid-3 .gallery-item {
    position: relative;
    width: 100%;
    background-color: #000000;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Photo 1 - 60% width */
.gallery-grid-3 .gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 16 / 6.31;
}

/* Photo 2 - 40% width */
.gallery-grid-3 .gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: auto;
    height: 100%;
}

.gallery-grid-3 .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 30px;
}

/* Gallery Grid 4 - Top row: 40% 20% 40%, Bottom row: 20% 40% 40% */
.gallery-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-rows: auto;
    gap: 10px;
    width: 100%;
    margin: 10px auto 0;
    padding: 0;
    border-radius: 0;
    align-items: stretch;
}

.gallery-grid-4 .gallery-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    background-color: #000000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Photo 1 - Top Left (40% = columns 1-2) */
.gallery-grid-4 .gallery-item:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1;
    aspect-ratio: 18 / 9;
}

/* Photo 3 - Top Middle (20% = column 3) */
.gallery-grid-4 .gallery-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
    aspect-ratio: 1 / 1.2;
}

/* Photo 2 - Top Right (40% = columns 4-5, spans 2 rows) */
.gallery-grid-4 .gallery-item:nth-child(2) {
    grid-column: 4 / span 2;
    grid-row: 1 / span 2;
    aspect-ratio: auto;
    height: 100%;
}

/* Photo 5 - Bottom Left (20% = column 1) */
.gallery-grid-4 .gallery-item:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 1 / 1.2;
}

/* Photo 4 - Bottom Middle (40% = columns 2-3) */
.gallery-grid-4 .gallery-item:nth-child(4) {
    grid-column: 2 / span 2;
    grid-row: 2;
    aspect-ratio: 18 / 9;
}

.gallery-grid-4 .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 30px;
}

/* Gallery Bottom Line */
.gallery-bottom-line {
    width: 60%;
    height: 2px;
    background-color: #b7140F;
    margin: 60px auto 0;
}

/* Responsive Design for Gallery */
@media (max-width: 1910px) {
    .gallery-grid {
        width: 100%;
    }
}
@media (min-width: 1504px) and (max-width: 1920px) {
    .pricing-tagline{
        min-height: 117px;
    }
}

@media (min-width: 1282px) and (max-width: 1503px) {
    .pricing-tagline{
        min-height: 156px;
    }
}
@media (max-width: 1560px) {
    .program-schedule-grid{
        width: 100%;
    }
}
@media (max-width: 1440px) {
    .business-card-title{
        font-size: 40px;
    }
 
    .business-card-description,
    .general-sponsor-subtitle{
        font-size: 32px;
    }
  
    .card-number{
        font-size: 40px;
    }
    .header-container{
        padding: 0 20px;
    }
    .video-container{
        padding: 0 20px;
    }
    .sponsors-title,
    .video-title,
    .benefits-title,
    .benefits-event-title,
    .benefits-event-title,
    .program-schedule-title,
    .pricing-main-title,
    .pricing-sub-title,
    .participants-main-title,
    .reviews-main-title,
    .gallery-main-title,
    .faq-main-title{
        font-size: 62px;
    }
    
    .main-title {
        font-size: 96px;
    }
    .primary-subtitle,
    .pricing-intro-text{
        font-size: 32px;
    }
    .footer-brand-name{
        font-size: 64px;
    }
    .footer-tagline-white,
    .footer-tagline-red{
        font-size: 40px;
    }

}
@media (max-width: 1360px) {
    .benefits-event-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}
@media (max-width: 1280px) {
    .business-card-title,
    .card-number,
    .business-card-number,
    .business-areas-title,
    .residents-subtitle,
    .banner-title-white,
    .features-main-title,
    .banner-title-red{
        font-size: 32px;
    }

    .logo-image{
        height: 129px;
        width: 150px;
    }
    
    .detail-icon{
        width: 32px;
        height: 32px;
    }
    .pricing-disclaimer{
        font-size: 14px;
    }

    .pricing-card-body{
        padding: 20px;

    }
    .pricing-tagline{
        font-size: 26px;
        min-height: 100px;
    }
    .program-time,
    .program-activity-title{
        font-size: 26px;
    }
    .card-description, 
    .business-card-description, 
    .general-sponsor-subtitle{
        font-size: 26px;
    }
    .card-description{
        font-size: 26px;
    }

    .logo-box{
        min-height: 200px;
    }
    .footer-tagline-white, .footer-tagline-red{
        font-size: 34px;
    }
    .footer-nav-link,
    .footer-social-text-link,
    .footer-policy-link,
    .footer-copyright-text,
    .footer-language{
        font-size: 22px;
    }
    .program-activity-description,
    .pricing-included-title,
    .pricing-features-list li,
    .pricing-bonus-title,
    .pricing-bonus-text{
        font-size: 22px;
    }
    .sponsors-title,
    .video-title,
    .benefits-title,
    .benefits-event-title,
    .benefits-event-title,
    .program-schedule-title,
    .pricing-main-title,
    .pricing-sub-title,
    .participants-main-title,
    .reviews-main-title,
    .gallery-main-title,
    .faq-main-title{
        font-size: 46px;
    }
    .language-selector {
        display: none;
    }
    .cta-link, 
    .nav-link,
    .logo span{
        font-size: 16px;
    }
    .nav-links{
        gap: 20px;
    }
}
/* Responsive Design for Benefits Event */
@media (max-width: 1200px) {


    .benefits-event-grid::before {
        display: none;
    }
}

/* Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .speakers-carousel-wrapper {
        margin: 60px auto;
    }

    .speakers-cards-container {
        gap: 40px;
    }

    .speaker-card {
        flex: 0 0 calc(50% - 20px);
    }
    
    .speaker-name {
        font-size: 28px;
    }
    
    .speaker-description {
        font-size: 16px;
    }
    .residents-page {
        gap: 10px;
    }
    .header-container {
        padding: 0 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
    .nav-links {
        gap: 20px;
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .main-title {
        font-size: 48px;
    }
    
    .primary-subtitle {
        font-size: 20px;
    }
    /* Responsive Design for Program */

    .program-schedule-grid {
        gap: 40px 40px;
    }

    .banner-title-white,
    .banner-title-red {
        font-size: 36px;
    }

    .banner-title-large {
        font-size: 42px;
    }

    .program-event-details {
        gap: 40px;
    }
    .features-columns {
        gap: 40px;
    }

    .features-main-title {
        width: 100%;
        font-size: 40px;
    }

    .features-secondary-title {
        font-size: 30px;
    }
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .countdown-wrapper {
        gap: 40px;
    }

    .countdown-number,
    .countdown-separator {
        font-size: 72px;
    }

    .countdown-label {
        font-size: 16px;
    }
    .participant-card {
        width: calc((100% - 80px) / 3);
        min-width: calc((100% - 80px) / 3);
        max-width: calc((100% - 80px) / 3);
    }
    
    .participants-carousel {
        gap: 40px;
    }
    .reviews-wrapper {
        gap: 20px;
    }

    .logo-box {
        background-color: #FFFFFF;
        border-radius: 10px;
        padding: 30px 20px;
        min-height: 115px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #000000;
        font-size: 16px;
        font-weight: 500;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        overflow: hidden;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .reviews-nav-arrow {
        width: 40px;
        height: 40px;
    }

    .reviews-nav-arrow svg {
        width: 20px;
        height: 20px;
    }
    .faq-question-wrapper {
        gap: 30px;
    }

    .faq-answer,
    .faq-item-active .faq-answer {
        padding-left: 100px !important;
    }
    .footer-content {
        flex-direction: column;
        gap: 50px;
    }

    .footer-right {
        max-width: 100%;
        align-items: flex-start;
    }

    .footer-right-top {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .footer-nav-links {
        align-items: flex-start;
    }

    .footer-right-bottom {
        align-items: flex-start;
    }

    .footer-brand-name {
        font-size: 80px;
    }

    .footer-tagline-white,
    .footer-tagline-red {
        font-size: 36px;
    }

    
    .gallery-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
}
@media  (max-width: 1024px) {
    .card-description, .business-card-description, .general-sponsor-subtitle, .participant-company{
        font-size: 22px;
    }
    .participant-description, .program-activity-description{
        font-size: 18px;
    }
    .program-time, .program-activity-title{
        font-size: 22px;
    }
    .logo-image{
        height: 115px;
        width: 150px;
    }
    
    .program-item{
        gap: 10px;
    }
    .pricing-tagline{
        font-size: 22px;
        min-height: 70px;
    }
    .program-activity-description, .pricing-included-title, .pricing-features-list li, .pricing-bonus-title, .pricing-bonus-text{
        font-size: 18px;
    }
    .participant-cta-button, .cta-button, .pricing-cta-button, .sponsor-cta-button{
        font-size: 18px;
    }
    .participants-subtitle, .reviews-subtitle, .faq-subtitle, 
    .primary-subtitle, .pricing-intro-text, .pricing-top-label, .program-top-label, .benefits-event-label-left
    .benefits-event-label-left, .benefits-event-label-right {
        font-size: 18px;
    }
    .countdown-info-text{
        font-size: 22px;
    }
    .countdown-urgency-text,
    .countdown-remaining-text{
        font-size: 22px;
    }
    .participant-name{
        font-size: 22px;
    }
    .review-role{
        font-size: 22px;
    }
    .review-text{
        font-size: 18px;
    }
    .faq-question{
        font-size: 22px;
    }
    .faq-answer-paragraph, .faq-answer-text{
        font-size: 18px;
    }
    .program-number, .faq-number, .benefit-number{
        font-size: 50px;
    }

    .countdown-label{
        font-size: 18px;
    }
    .benefit-title,
    .speaker-name{
        font-size: 22px;
    }
    .benefit-description,
    .speaker-description{
        font-size: 18px;
    }

    .detail-text{
        font-size: 18px;
    }
    .transparent-text-content{
        font-size: 14px;
    }   
    .date-location{
        font-size: 20px;
    }
    .main-title{
        font-size: 60px;
    }
    .business-card-title, .card-number, .business-card-number, .business-areas-title, .residents-subtitle, .banner-title-white, .features-main-title, .banner-title-red{
        font-size: 26px;
    }
    .video-slogan,
    .benefits-label{
        font-size: 18px;
    }
    .sponsors-title, .video-title, .benefits-title, .benefits-event-title, .benefits-event-title, .program-schedule-title, .pricing-main-title, .pricing-sub-title, .participants-main-title, .reviews-main-title, .gallery-main-title, .faq-main-title{
        font-size: 34px;
    }
}
@media (max-width: 768px) {
    .business-areas-section {
        padding:  0;
    }

    .business-areas-container {
        padding: 0 20px;
    }

    .business-areas-title {
        font-size: 26px;
        margin-bottom: 40px;
        text-align: center;
    }
    .logo-image {
        height: 65px;
        width: auto;
    }
    .business-area-card {
        padding: 25px 20px;
    }

    .business-card-content {
        gap: 15px;
    }

    .business-card-number {
        font-size: 16px;
        min-width: 29px;
    }

    .business-card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .business-card-description {
        font-size: 12px;
    }
    .business-areas-separator{
        display: none;
    }
    .general-sponsor-container{
        gap: 10px;
    }
    .sponsors-section {
        padding: 0;
    }

    .sponsors-container {
        padding: 0 20px;
    }

    .sponsors-title {
        font-size: 20px;
        margin-bottom: 40px;
        letter-spacing: 0;
        text-align: center;
    }

    .general-sponsor-container {
        padding: 20px;
    }

    .logo-placeholder {
        height: auto;
        padding: 15px;
    }

    .logo-placeholder-text {
        font-size: 14px;
    }

    .sponsor-cta-button {
        text-align: center;
    }

    .participant-cta-button, .cta-button, .pricing-cta-button, .sponsor-cta-button{
        font-size: 16px;
    }
    

    .logo-box {
        min-height: 85px;
        padding: 17px 15px;
        font-size: 14px;
        border-radius: 5px;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
    }
    .header {
        padding: 20px 0;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0 20px;
    }
    
    /* Show burger menu on mobile - logo left, burger right */
    .burger-menu {
        display: flex;
        order: 2;
    }
    
    /* Logo stays on the left */
    .logo {
        order: 1;
    }
    
    /* Hide navigation and other elements on mobile */
    .nav-arrow-d {
        display: none;
    }
    
    .header-right {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Show mobile menu on mobile devices */
    .mobile-menu {
        display: flex;
        align-items: center;
    }
    
    .main-title {
        line-height: 1;
    }
    
    .primary-subtitle {
        font-size: 18px;
    }
    
    .secondary-subtitle {
        font-size: 16px;
    }
    
    .date-location {
        font-size: 14px;
    }
    
    .repeating-keywords {
        font-size: 10px;
    }
    
    .video-section {
        padding: 80px 0 0;
    }
    
    .video-container {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
    }
    
    .video-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
        order: 1;
    }
    
    .video-slogan {
        display: none; /* Скрываем slogan в header на мобильных */
    }
    
    .video-wrapper {
        order: 2;
        margin-bottom: 0;
    }
    
    .video-separator-wrapper {
        order: 3;
        flex-direction: row;
        align-items: center;
        margin-top: 40px;
    }
    
    .video-separator {
        flex: 1;
        height: 2px;
    }
    
    /* Показываем slogan справа от линии на мобильных */
    .video-slogan-mobile {
        display: block;
        color: #B7140F;
        font-size: 14px;
        font-weight: 500;
        margin: 0;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width: 18px;
        height: 22px;
    }
    
    .benefits-section {
        padding: 40px 0;
    }
    
    .benefits-container {
        padding: 0 20px;
    }
    
    .benefits-title {
        margin-bottom: 40px;
        font-size: 26px;
        letter-spacing: 0;
    }
    
    .benefit-card {
        padding: 17px 25px;
    }
    
    .card-number {
        font-size: 16px;
        min-width: 29px;
    }
    
    .card-title {
        font-size: 22px;
    }
    
    .card-description {
        font-size: 12px;
    }

    .benefits-event-header{
        margin-bottom: 80px;
    }
    .benefits-event-section {
        padding: 30px 0 0;
    }
    .benefits-event-label-right{
        display: none;
    }
    .benefits-event-header.speakers-header{
        margin-bottom: 0;
    }
    .benefits-event-header.speakers-header .benefits-event-header-line{
        display: none;
    }
    .benefits-event-container {
        padding: 0 20px;
    }

    .benefits-event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .benefits-event-header-line {
        width: 100%;
        margin: 0;
    }

    .benefits-event-title {
        font-size: 30px;
        margin: 30px 0 40px;
        
    }

    .benefits-event-grid {
        gap: 40px;
        display: flex;
        flex-direction: column;
        position: relative;
        padding-left: 0; /* Убираем отступ, так как цифры теперь слева */
        width: 400px;
        margin: 0 auto;
    }
    
    /* Вертикальная линия для мобильных - между цифрами и текстом */
    .benefits-event-grid::after {
        content: '';
        position: absolute;
        left: 70px;
        top: -10px;
        bottom: -10px;
        width: 1px;
        background-color: #ffffff;
        z-index: 1;
    }

    .benefit-event-item {
        display: grid;
        grid-template-columns: 50px auto 1fr;
        text-align: left;
        position: relative;
        column-gap: 20px;
    }

    .benefit-number {
        font-size: 36px;
        color: #B7140F;
        font-weight: 500;
        position: relative;
        z-index: 3;
        margin: 0;
        grid-column: 1;
        grid-row: 1 / 3; /* Занимает обе строки (заголовок + подзаголовок) */
        align-self: center; /* Выравнивание по центру вертикально */
        line-height: 1;
    }
    
    .benefit-dot {
        position: absolute;
        left: 71px;
        top: 13px;
        width: 12px;
        height: 12px;
        background-color: #FB0C04;
        border-radius: 50%;
        z-index: 2;
        margin: 0;
        transform: translateX(-50%);
    }
    
    .benefit-title {
        margin-bottom: 0px;
        margin-top: 0;
        grid-column: 3;
        grid-row: 1;
        letter-spacing: 0.03em;
    }
    .speaker-name{
        font-size: 22px;
    }
    .speaker-description{
        font-size: 18px;
    }
    .benefit-description {
        margin: 0;
        grid-column: 3;
        grid-row: 2;
        line-height: 1.4;
    }

    .benefits-event-button {
        font-size: 16px;
        padding: 15px 40px;
    }

    .speakers-section {
        padding: 60px 0 60px;
    }

    .speakers-container {
        padding: 0 20px;
    }

    .speakers-title {
        font-size: 32px;
    }

    .speakers-title-line {
        max-width: 100px;
        margin-left: 15px;
    }

    .speakers-carousel-wrapper {
        margin: 40px auto;
        padding: 0;
        width: 100%;
        overflow-x: visible;
        overflow-y: hidden;
        position: relative;
        /* Hide scrollbar */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .speakers-carousel-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
        width: 0;
        height: 0;
    }

    .speakers-cards-container {
        display: flex;
        gap: 20px;
        width: 100%;
        transition: transform 0.5s ease;
        will-change: transform;
        padding-right: 0;
    }
    
    .speakers-cards-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
        width: 0;
        height: 0;
    }

    .speaker-card {
        flex: 0 0 80%;
        min-width: 80%;
        max-width: 80%;
        width: 80%;
        box-sizing: border-box;
    }
    
    .speaker-image-wrapper {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .speaker-image {
        border-radius: 20px;
    }

    .speaker-name {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .speaker-description {
        font-size: 18px;
        text-align: center;
    }

    .speakers-nav-arrow {
        width: 45px;
        height: 45px;
    }

    .features-section {
        padding: 20px 0 0;
    }

    .features-container {
        padding: 0 20px;
    }

    .features-main-title {
        font-size: 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .features-title-desktop {
        display: none;
    }
    
    .features-title-mobile {
        display: inline;
    }

    .features-secondary-title {
        font-size: 24px;
        margin-bottom: 50px;
    }

    .features-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .feature-column {
        padding-bottom: 30px;
    }
    
    .feature-column::after {
        width: 100%;
    }

    .feature-column:last-child::after {
        display: none;
    }
    .feature-column:last-child{
        padding-bottom: 0;
    }
    .feature-column-title {
        font-size: 14px;
        margin: 0 0 10px 0;
    }
    .dark-overlay{
        background-color: rgba(0, 0, 0, 0.65);
    }
    .feature-column-description {
        font-size: 14px;
    }
    .hero-bottom-blur-bg {
        min-height: 400px;
        /* Для мобильной версии добавим более плавный и компактный градиент маски */
        mask-image: linear-gradient(to top,
            black 0%,
            black 3%,
            rgba(0, 0, 0, 0.8) 40%,
            rgba(0, 0, 0, 0.3) 65%,
            transparent 100%
        );
        -webkit-mask-image: linear-gradient(to top, black 0%, black 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.2) 7%, transparent 100%);
    }

    .program-section {
        padding: 20px 0;
    }

    .program-container {
        padding: 0 20px;
    }

    .program-banner-content {
        padding: 30px 20px;
        min-height: 400px;
    }

    .banner-title-white {
        width: 100%;
        max-width: 100%;
        font-size: 30px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        margin: 0 0 30px 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .banner-title-red {
        font-size: 18px;
    }
    
    .banner-title-desktop {
        display: none;
    }
    
    .banner-title-mobile {
        display: inline;
        white-space: normal;
        word-break: break-word;
    }

    .banner-subtitle {
        font-size: 24px;
    }

    .banner-title-large {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .program-banner{
        margin: 40px 0;
    }
    .program-event-details {
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        display: flex !important;
    }
    
    .event-detail-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        flex: 1 1 0;
        min-width: 0;
    }
    
    .detail-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .detail-text {
        text-align: left;
        font-size: 14px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        flex: 1;
        min-width: 0;
        line-height: 1.4;
    }

    .program-schedule-title {
        font-size: 30px;
        margin-bottom: 40px;
        letter-spacing: 0px;
    }
    .program-item-content{
        gap: 0;

    }
    .program-time{
        color: #FFFFFF;
        font-size: 22px;
    }

    .program-activity-description{
        font-size: 18px;
    }
    .program-schedule-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: start;
    }
    .cta-button{
        font-size: 18px;
    }
    .program-cta{
        margin-top: 40px;
    }
    .program-number {
        font-size: 36px;
        width: 40px;
    }

    .program-activity-title {
        font-size: 22px;
    }

    .program-cta-button {
        font-size: 16px;
        padding: 15px 50px;
    }

    .pricing-section {
        padding: 80px 0 40px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    .pricing-top-label{
        display: none;
    }
    .pricing-sub-title{
        display: none;
    }

    .pricing-container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .pricing-main-title {
        font-size: 32px;
        letter-spacing: 0;
    }

    .pricing-intro-text {
        font-size: 16px;
        color: #B1B1B1;
        margin-bottom: 40px;
    }


    .pricing-cards-wrapper {
        overflow: hidden;
        position: relative;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        /* Hide scrollbar */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .pricing-cards-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
        width: 0;
        height: 0;
    }
    
    .pricing-cards {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px;
        transition: transform 0.5s ease;
        grid-template-columns: none !important;
        will-change: transform;
        padding: 0;
        margin: 0;
        position: relative;
        left: 0;
        width: auto;
        flex-wrap: nowrap;
    }
    
    .pricing-cards::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
        width: 0;
        height: 0;
    }
    
    .pricing-card {
        flex: 0 0 80% !important;
        min-width: 80% !important;
        max-width: 80% !important;
        width: 80% !important;
        box-sizing: border-box;
        grid-column: unset !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible;
        position: relative;
        flex-shrink: 0;
    }
    
    .pricing-card-header,
    .pricing-card-body {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-navigation {
        display: flex;
        justify-content: space-between;
    }

    .pricing-card-header {
        padding: 15px;
        min-height: 55px;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .pricing-tier-name {
        font-size: 18px;
    }

    .pricing-card-body {
        padding: 15px;
        overflow-wrap: break-word;
        word-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-tagline,
    .pricing-bonus-text,
    .pricing-disclaimer {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-features-list,
    .pricing-features-list li {
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .pricing-included,
    .pricing-bonus {
        max-width: 100%;
        box-sizing: border-box;
    }
    .pricing-bonus-text{
        font-size: 18px;
    }
    .pricing-bonus-title{
        font-size: 18px;
    }

    .countdown-container {
        padding: 0 20px;
    }

    .countdown-info-text {
        display: none;
    }

    .countdown-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center;
    }

    .countdown-left-text {
        flex-direction: row;
        align-items: center;
        justify-self: center;
        gap: 5px;
    }
    
    .countdown-timer {
        justify-self: center;
    }

    .countdown-urgency-text,
    .countdown-remaining-text {
        letter-spacing: 0;
    }

    .countdown-timer {
        gap: 15px;
    }

    .countdown-number,
    .countdown-separator {
        font-size: 50px;
    }

    .countdown-label {
        font-size: 20px;
    }
    .countdown-number{
        margin-bottom: 10px;
    }
    .countdown-bottom-line {
        width: 100%;
    }
    .countdown-wrapper{
        margin-bottom: 40px;
    }

    .participants-section {
        padding: 80px 0 0;
    }

    .participants-container {
        padding: 0 20px;
    }

    .participants-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 40px;
    }

    .participants-main-title {
        font-size: 26px;
    }
    .participants-main-title{
        letter-spacing: 0;
    }
    .participants-subtitle {
        display: none;
    }

    .participant-card {
        width: calc(50% - 15px);
    }



    .participant-company {
        font-size: 14px;
        color: #ffffff;
    }

    .participant-description {
        margin-bottom: 20px;
    }

    .participants-carousel-wrapper {
        overflow-x: visible;
        overflow-y: hidden;
        width: 100%;
        position: relative;
        /* Hide scrollbar */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .participants-carousel-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
        width: 0;
        height: 0;
    }
    
    .participants-carousel {
        display: flex;
        flex-direction: row;
        gap: 20px;
        transition: transform 0.5s ease;
        will-change: transform;
        padding-right: 0;
    }
    
    .participants-carousel::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
        width: 0;
        height: 0;
    }
    
    .participant-card {
        flex: 0 0 80%;
        min-width: 80%;
        max-width: 80%;
        width: 80%;
        box-sizing: border-box;
        flex-shrink: 0;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .participants-navigation {
        justify-content: space-between;
        gap: 20px;
    }
    
    .participants-page-indicator {
        display: block;
    }
    
    .participants-nav-arrow {
        width: 45px;
        height: 45px;
    }

    .participants-nav-line {
        left: 45px;
        right: 45px;
    }

    .general-sponsor-subtitle{
        font-size: 14px;
    }

    .reviews-section {
        padding: 80px 0;
    }

    .reviews-container {
        padding: 0 20px;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 40px;
    }

    .reviews-header-line {
        width: 100%;
        margin: 0;
        margin-bottom: 0;
    }

    .reviews-main-title {
        font-size: 20px;
    }

    .reviews-subtitle {
        font-size: 16px;
        display: none;
    }

    .reviews-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .reviews-grid-wrapper {
        overflow: hidden;
        width: 100%;
        order: 1;
    }
    
    .reviews-grid {
        display: flex !important;
        flex-direction: row;
        gap: 20px;
        grid-template-columns: none !important;
        will-change: transform;
    }
    
    .review-card {
        flex: 0 0 100% !important;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        flex-shrink: 0;
        opacity: 1 !important;
        visibility: visible !important;

        min-height: 289px;
    }
    
    .reviews-nav-arrow {
        display: none;
    }
    
    .reviews-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        order: 2;
        width: 100%;
        margin-top: 20px;
    }
    
    .reviews-page-indicator {
        display: block;
    }
    
    .reviews-navigation .reviews-nav-arrow {
        display: flex;
        width: 45px;
        height: 45px;
    }

    .reviews-nav-arrow svg {
        width: 18px;
        height: 18px;
    }

  
    .pricing-included-title,
    .pricing-features-list li,
    .pricing-features-list li::before,
    .pricing-bonus-title{
        font-size: 18px;
    }

    .video-title{
        font-size: 26px;
    }
    .faq-section {
        padding: 0;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-header {
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 40px;
    }

    .faq-main-title {
        letter-spacing: 0;
        font-size: 20px;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-item {
        padding: 25px 0;
    }

    .faq-question-wrapper {
        gap: 20px;
    }

    .faq-number {
        font-size: 36px;
        min-width: 41px;
    }

    
    .program-item {
        gap: 32px;
    }
    .faq-toggle {
        width: 40px;
        height: 40px;
    }

    .faq-toggle svg {
        width: 20px;
        height: 20px;
    }

    .faq-answer,
    .faq-item-active .faq-answer {
        padding-left: 61px !important;
    }
    .faq-item-active .faq-answer {
        margin-top: 10px;
    }
    .faq-answer-text{
        margin: 0;
    }


    .residents-section {
        margin-bottom: 30px;
    }
    .benefits-event-label-left{
        font-size: 14px;
    }


    .gallery-section {
        padding: 60px 0;
    }

    .gallery-container {
        padding: 0 20px;
    }

    .gallery-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .gallery-main-title {
        font-size: 20px;
        letter-spacing: 0;
    }

    .gallery-header .faq-subtitle {
        font-size: 16px;
        color: #b7140f;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 10px;
        row-gap: 10px;
        column-gap: 10px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
        width: 100%;
        border-radius: 30px;
        background-color: #000000;
        overflow: hidden;
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }
    

    
    .gallery-item:nth-child(4){
        grid-column: 1;
        grid-row: 3;
        aspect-ratio: 4 / 3;
    }
    
    .gallery-item:nth-child(5) {
        grid-column: 1;
        grid-row: 4;
        aspect-ratio: 4 / 3;
    }
    
    .gallery-item:nth-child(6) {
        grid-column: 2;
        grid-row: 3 / span 2;
        aspect-ratio: 2 / 3.1;
    }
    
    /* Hide 7th item in gallery-grid on mobile */
    .gallery-grid .gallery-item:nth-child(7) {
        display: none !important;
    }
    
    /* Show the mobile-only item in gallery-grid-4 on mobile */
    .gallery-grid-4 .gallery-item-mobile-only {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .gallery-item-desktop-only {
        display: none;
    }
    
    .gallery-image {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 30px;
    }


    /* Gallery Slider Styles for Mobile */
    .gallery-slider-wrapper {
        display: block;
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .gallery-slider-container {
        display: flex;
        transition: transform 0.5s ease;
        will-change: transform;
    }

    .gallery-slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
    }

    /* Hide desktop gallery grids on mobile */
    .gallery-grid-desktop {
        display: none !important;
    }

    /* Gallery Slider Navigation */
    .gallery-slider-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }

    .gallery-slider-nav {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: none;
        background-color: #262626;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
    }

    .gallery-slider-nav:hover:not(.disabled) {
        background-color: #B7140F;
    }

    .gallery-slider-nav.disabled {
        background-color: #262626 !important;
        cursor: not-allowed;
        opacity: 0.5 !important;
    }

    .gallery-slider-nav.disabled:hover {
        background-color: #262626 !important;
    }

    .gallery-slider-nav svg {
        width: 24px;
        height: 24px;
    }

    .gallery-slider-nav svg path {
        stroke: #FFFFFF;
    }

    .gallery-slider-counter {
        color: #FFFFFF;
        font-size: 18px;
        font-weight: 500;
        min-width: 50px;
        text-align: center;
    }

    /* Reviews Section Mobile Styles */
    .reviews-container {
        padding: 0 20px;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 40px;
    }

    .reviews-main-title {
        font-size: 26px;
    }

    .reviews-subtitle {
        font-size: 16px;
    }

    .reviews-wrapper {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .reviews-grid-wrapper {
        overflow-x: visible;
        overflow-y: hidden;
        width: 100%;
        padding-right: 0;
        position: relative;
        /* Hide scrollbar */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .reviews-grid-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
        width: 0;
        height: 0;
    }
    
    .reviews-grid {
        /* Hide scrollbar */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .reviews-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
        width: 0;
        height: 0;
    }
    
    .review-card {
        /* Hide scrollbar */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .review-card::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
        width: 0;
        height: 0;
    }

    .reviews-grid {
        display: flex;
        gap: 20px;
        transition: transform 0.5s ease;
        will-change: transform;
        padding-right: 0;
    }

    .review-card {
        flex: 0 0 85%;
        min-width: 80%;
        max-width: 80%;
        min-height: auto;
        padding: 15px 10px;
        background-color: transparent;
        text-align: left;
        gap: 20px;
        box-sizing: border-box;
    }

    .review-avatar {
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .review-avatar-circle {
        flex-shrink: 0;
    }

    .review-role {
        font-size: 32px;
        text-align: center;
        margin: 0;
    }

    .review-text {
        font-size: 22px;
        text-align: left;
        margin: 0;
    }
    
    /* Remove scroll progress indicator - hide all possible progress bars */
    .review-card::after,
    .review-text::after,
    .review-card::before,
    .review-text::before,
    .review-card *::after,
    .review-card *::before {
        display: none !important;
        content: none !important;
        background: none !important;
        border: none !important;
        height: 0 !important;
        width: 0 !important;
    }
    
    .review-card {
        border-bottom: none !important;
        border-top: none !important;
        position: relative;
    }
    
    .review-text {
        border-bottom: none !important;
        border-top: none !important;
        position: relative;
    }
    
    /* Hide any progress bar elements inside review cards */
    .review-card .progress,
    .review-card .progress-bar,
    .review-card .progress-indicator,
    .review-card [class*="progress"],
    .review-card [class*="indicator"],
    .review-card hr,
    .review-card .line {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .reviews-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        margin-top: 0;
        width: 100%;
    }

    .reviews-page-indicator {
        display: block;
        color: #FFFFFF;
        font-size: 18px;
        font-weight: 500;
        min-width: 50px;
        text-align: center;
    }

    .reviews-nav-arrow {
        width: 50px;
        height: 50px;
    }

    .reviews-nav-left {
        background-color: #262626;
    }

    .reviews-nav-right {
        background-color: #262626;
    }

    .reviews-nav-right:hover:not(.disabled) {
        background-color: #B7140F;
    }

    /* Make all gallery grids look the same as gallery-grid */
    .gallery-grid,
    .gallery-grid-2,
    .gallery-grid-3,
    .gallery-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 10px;
        row-gap: 10px;
        column-gap: 10px;
        margin-top: 0;
        display: grid !important;
    }

    /* Make all gallery items look the same */
    .gallery-grid-2 .gallery-item,
    .gallery-grid-3 .gallery-item,
    .gallery-grid-4 .gallery-item {
        aspect-ratio: 4 / 3;
        width: 100%;
        grid-column: auto;
        grid-row: auto;
        background-color: #000000;
        border-radius: 30px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    /* Reset all nth-child rules for mobile */
    .gallery-grid-2 .gallery-item:nth-child(n),
    .gallery-grid-3 .gallery-item:nth-child(n),
    .gallery-grid-4 .gallery-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }

    /* Make gallery images consistent */
    .gallery-grid-2 .gallery-image,
    .gallery-grid-3 .gallery-image,
    .gallery-grid-4 .gallery-image {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 30px;
    }
    .gallery-item:nth-child(3), .gallery-grid-2 .gallery-item:nth-child(1){
        grid-column: 1 / -1;
        aspect-ratio: 16 / 9;
    }
    .gallery-bottom-line {
        width: 80%;
        margin-top: 40px;
    }
    .benefits-event-cta{
        margin-top: 40px;
    }
    .pricing-tagline {
        font-size: 18px;
        min-height: 0px;
        letter-spacing: 0px; 
        margin-bottom: 10px;
    }
    .participant-name{
        font-size: 20px;
    }
    .review-role, .faq-question{
        font-size: 20px;
    }
    .faq-answer, .faq-item-active .faq-answer{
        padding-left: 57px;
    }
    
    .pricing-divider,
    .pricing-included-title,
    .pricing-included{
        margin-bottom: 10px;
    }

    .pricing-bonus{
        margin-bottom: 20px;
    }

    .pricing-disclaimer{
        padding-bottom: 0;
    }
    .participant-cta-button{
        font-size: 16px;
        padding: 20px 0;
    }
    .speakers-bottom-line{
        width: 100%;
    }
    .benefits-label{
        font-size: 14px;
    }

    .general-sponsor-section {
        margin-bottom: 20px;
    }
    .footer {
        padding: 60px 0;
    }

    .footer-container {
        padding: 0 20px;
    }
    .footer-right {
        max-width: 100%;
        width: 100%;
        align-items: flex-start;
    }

    .footer-brand-name {
        font-size: 48px;
        letter-spacing: 0;
    }
    .footer-brand-name{
        margin: 0 0 10px 0;
    }

    .footer-tagline-white,
    .footer-tagline-red {
        font-size: 32px;
        letter-spacing: 0;
    }

    .footer-social-links {
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
    }
    
    .footer-nav-links{
        display: none;
    }
    .footer-language{
        display: none;
    }
    
    /* Скрываем дополнительные grid-ы на мобильных устройствах (до 768px) - показываем только первые 6 фотографий */
    /* Gallery grids are now visible and styled the same */
    .program-top-label{
        font-size: 14px;
    }
    .footer-content{
        flex-direction: column;
    }
    .transparent-text-content{
        font-size: 12px;
    }
    .date-location{
        font-size: 18px;
    }
    .business-card-title, .card-number, .business-card-number, .business-areas-title, .residents-subtitle, .banner-title-white, .features-main-title, .banner-title-red{
        font-size: 24px;
    }
    .card-description, .business-card-description, .general-sponsor-subtitle, .participant-company{
        font-size: 18px;
    }
    .sponsors-title, .video-title, .benefits-title, .benefits-event-title, .benefits-event-title, .program-schedule-title, .pricing-main-title, .pricing-sub-title, .participants-main-title, .reviews-main-title, .gallery-main-title, .faq-main-title{
        font-size: 30px;
    }
    .speaker-name{
        font-size: 22px;
    }
    .gallery-grid-2 .gallery-item:nth-child(3) {
        grid-column: 2;
        grid-row: 3 / span 2;
        aspect-ratio: 2 / 3.1;
    }
    .gallery-grid-2 .gallery-item:nth-child(2) {
        grid-column: 1;
        grid-row: 3;
        aspect-ratio: 4 / 3;
    }
    .gallery-grid-2 .gallery-item:nth-child(4) {
        grid-column: 1;
        grid-row: 4;
        aspect-ratio: 4 / 3;
    }
}

/* Booking Pop-up Form */
.booking-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.booking-popup-overlay.active {
    display: flex;
    opacity: 1;
}

body.popup-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

html.popup-open {
    overflow: hidden;
}

.booking-popup-container {
    background-color: #1A1A1A;
    border-radius: 15px;
    padding: 50px 40px 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    margin: auto;
}

/* Custom scrollbar for popup container */
.booking-popup-container::-webkit-scrollbar {
    width: 8px;
}

.booking-popup-container::-webkit-scrollbar-track {
    background: #1A1A1A;
    border-radius: 4px;
}

.booking-popup-container::-webkit-scrollbar-thumb {
    background: #B7140F;
    border-radius: 4px;
}

.booking-popup-container::-webkit-scrollbar-thumb:hover {
    background: #E50000;
}

.booking-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.booking-popup-title {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    flex: 1;
    letter-spacing: 1px;
}

.booking-popup-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: #B7140F;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.booking-popup-close:hover {
    background-color: #cc0000;
    transform: scale(1.1);
}

.booking-popup-close svg {
    width: 18px;
    height: 18px;
}

.booking-popup-subtitle {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.5;
}

.booking-popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form-group {
    width: 100%;
}

.booking-input {
    width: 100%;
    background-color: #1A1A1A;
    border: 1px solid #B7140F;
    border-radius: 8px;
    padding: 18px 20px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Gilroy', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.booking-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.booking-input:focus {
    outline: none;
    border-color: #E50000;
    background-color: #222222;
}

.booking-input:invalid:not(:placeholder-shown) {
    border-color: #B7140F;
}

.booking-discount-section {
    margin-top: 10px;
}

.booking-discount-title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.booking-discount-selector {
    position: relative;
    width: 100%;
}

.booking-discount-display {
    width: 100%;
    background-color: #1A1A1A;
    border: 1px solid #B7140F;
    border-radius: 30px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.booking-discount-selector.active .booking-discount-display {
    border-color: #E50000;
}

.booking-discount-display:hover {
    border-color: #E50000;
    background-color: #222222;
}

.booking-ticket-count {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
}

.booking-discount-value {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    margin-right: 10px;
}

.booking-dropdown-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.booking-discount-selector.active .booking-dropdown-icon {
    transform: rotate(180deg);
}

.booking-discount-select {
    display: none;
}

/* Custom dropdown list container */
.booking-discount-select-list {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background-color: #1A1A1A;
    border: 1px solid #B7140F;
    border-radius: 30px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    max-height: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.booking-discount-selector.active .booking-discount-select-list {
    opacity: 1;
    pointer-events: auto;
    max-height: 400px;
}

.booking-discount-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #B7140F;
    background-color: #1A1A1A;
}

.booking-discount-option:first-child {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.booking-discount-option:last-child {
    border-bottom: none;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.booking-discount-option:hover {
    background-color: #222222;
}

.booking-discount-option.selected {
    background-color: #2A2A2A;
}

.booking-discount-option-tickets {
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 400;
}

.booking-discount-option-value {
    color: #B7140F;
    font-weight: 500;
}

.booking-submit-button {
    width: 100%;
    background-color: #B7140F;
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: 'Gilroy', sans-serif;
}

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

.booking-submit-button:active {
    transform: translateY(0);
}

.booking-popup-footer {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin: 30px 0 0 0;
    line-height: 1.5;
    opacity: 0.8;
}

/* Sponsor Pop-up Form */
.sponsor-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.sponsor-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.sponsor-popup-container {
    background-color: #1A1A1A;
    border-radius: 15px;
    padding: 50px 40px 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    margin: auto;
}

/* Custom scrollbar for sponsor popup container */
.sponsor-popup-container::-webkit-scrollbar {
    width: 8px;
}

.sponsor-popup-container::-webkit-scrollbar-track {
    background: #1A1A1A;
    border-radius: 4px;
}

.sponsor-popup-container::-webkit-scrollbar-thumb {
    background: #B7140F;
    border-radius: 4px;
}

.sponsor-popup-container::-webkit-scrollbar-thumb:hover {
    background: #E50000;
}

.sponsor-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.sponsor-popup-title {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    flex: 1;
    letter-spacing: 1px;
}

.sponsor-popup-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: #B7140F;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.sponsor-popup-close:hover {
    background-color: #cc0000;
    transform: scale(1.1);
}

.sponsor-popup-close svg {
    width: 18px;
    height: 18px;
}

.sponsor-popup-subtitle {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.5;
}

.sponsor-popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sponsor-form-group {
    width: 100%;
}

.sponsor-input {
    width: 100%;
    background-color: #1A1A1A;
    border: 1px solid #B7140F;
    border-radius: 8px;
    padding: 18px 20px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Gilroy', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.sponsor-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.sponsor-input:focus {
    outline: none;
    border-color: #E50000;
    background-color: #222222;
}

.sponsor-input:invalid:not(:placeholder-shown) {
    border-color: #B7140F;
}

.sponsor-submit-button {
    width: 100%;
    background-color: #B7140F;
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.sponsor-submit-button:active {
    transform: translateY(0);
}

.sponsor-popup-footer {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin: 30px 0 0 0;
    line-height: 1.5;
    opacity: 0.8;
}

/* Mobile Responsive for Booking Popup */
@media (max-width: 768px) {

    .booking-popup-container {
        padding: 40px 20px 30px;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }

    .booking-popup-title {
        font-size: 24px;
        padding-right: 50px;
    }

    .booking-popup-close {
        width: 35px;
        height: 35px;
    }

    .booking-popup-close svg {
        width: 16px;
        height: 16px;
    }

    .booking-popup-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .booking-input {
        padding: 15px 18px;
        font-size: 16px;
    }

    .booking-discount-title {
        font-size: 20px;
    }

    .booking-ticket-count,
    .booking-discount-value {
        font-size: 16px;
    }

    .booking-discount-option {
        padding: 12px 18px;
        font-size: 16px;
    }

    .booking-discount-select-list {
        border-radius: 20px;
    }

    .booking-discount-option:first-child {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .booking-discount-option:last-child {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .booking-submit-button {
        padding: 15px 40px;
        font-size: 18px;
    }

    .booking-popup-footer {
        font-size: 12px;
        margin-top: 20px;
    }

    /* Sponsor Popup Mobile Styles */
    .sponsor-popup-container {
        padding: 40px 20px 30px;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }

    .sponsor-popup-title {
        font-size: 24px;
        padding-right: 50px;
    }

    .sponsor-popup-close {
        width: 35px;
        height: 35px;
    }

    .sponsor-popup-close svg {
        width: 16px;
        height: 16px;
    }

    .sponsor-popup-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .sponsor-input {
        padding: 15px 18px;
        font-size: 16px;
    }

    .sponsor-submit-button {
        padding: 15px 40px;
        font-size: 18px;
    }

    .sponsor-popup-footer {
        font-size: 12px;
        margin-top: 20px;
    }
    .pricing-cards{
        overflow-x: initial;
    }
    .pricing-cards{
        min-height: 650px;
    }
}
@media (max-width: 480px) {
    .benefits-event-grid {
        width: 100%;
        margin: 0 auto;
    }
    .benefits-event-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-social-links{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .main-title{
        font-size: 42px;
    }
    .video-section{
        padding: 40px 0 0;
    }

    .speakers-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .speakers-title-line {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-top: 10px;
    }

    .speakers-carousel-wrapper {
        margin: 40px auto;
        padding: 0;
        width: 100%;
        overflow-x: visible;
        overflow-y: hidden;
        position: relative;
        /* Hide scrollbar */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .speakers-carousel-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
        width: 0;
        height: 0;
    }

    .speakers-cards-container {
        display: flex;
        gap: 20px;
        width: 100%;
        transition: transform 0.5s ease;
        will-change: transform;
        padding-right: 0;
    }
    
    .speakers-cards-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
        width: 0;
        height: 0;
    }

    .speaker-card {
        flex: 0 0 80%;
        min-width: 80%;
        max-width: 80%;
        width: 80%;
        box-sizing: border-box;
    }
    .pricing-main-title{
        font-size: 30px;
    }
    .speaker-image-wrapper {
        margin-bottom: 15px;
    }
    
    .speaker-image {
        border-radius: 15px;
    }
    
    .speaker-name {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .speaker-description {
        font-size: 14px;
        text-align: center;
    }
    .countdown-timer {
        gap: 10px;
    }
    .participant-card {
        width: calc(100% - 0px);
    }
    .faq-question-wrapper {
        flex-wrap: wrap;
        gap: 15px;
    }


    .faq-question {
        width: calc(100% - 60px);
    }

    .faq-answer {
        padding-left: 0;
    }

    .business-card-title, .card-number, .business-card-number, .business-areas-title, .residents-subtitle, .banner-title-white, .features-main-title, .banner-title-red{
        font-size: 20px;
    }
    .logo-box{
        min-height: 80px;
        padding: 10px;
        font-size: 14px;
        border-radius: 5px;
    }
    .sponsors-title, .video-title, .benefits-title, .benefits-event-title, .benefits-event-title, .program-schedule-title, .pricing-main-title, .pricing-sub-title, .participants-main-title, .reviews-main-title, .gallery-main-title, .faq-main-title{
        font-size: 26px;
    }
    .benefit-title, .speaker-name{
        font-size: 20px;
    }
    .speaker-description{
        font-size: 18px;
    }
    .program-event-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
    }
    .program-time, .program-activity-title{
        font-size: 20px;
    }
    .pricing-main-title{
        margin-bottom: 40px;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    max-width: calc(100% - 40px);
    background-color: #1A1A1A;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.cookie-consent.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.cookie-consent-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #b7140f;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(204, 51, 34, 0.3);
}

.cookie-consent-close:hover {
    background-color: #B02A1C;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(204, 51, 34, 0.4);
}

.cookie-consent-close:active {
    transform: scale(0.95);
}

.cookie-consent-close svg {
    width: 16px;
    height: 16px;
    display: block;
}

.cookie-consent-text {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    text-align: center;
    font-weight: 400;
    padding-right: 20px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.cookie-consent-accept,
.cookie-consent-decline {
    flex: 1;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.cookie-consent-accept {
    background-color: transparent;
    color: #FFFFFF;
    /* border: 1.5px solid #b7140f; */
    background-color: #b7140f;
}

.cookie-consent-accept:hover {
    background-color: #b7140fb3;
    border-color: #b7140f;
}

.cookie-consent-decline {
    background-color: #b7140f;
    color: #FFFFFF;
    background-color: transparent;
    border: 1.5px solid #ffffff;
}

.cookie-consent-decline:hover {
    background-color: #b7140f;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        width: calc(100% - 40px);
        bottom: 20px;
        right: 20px;
        left: 20px;
        padding: 40px 20px;
    }

    .cookie-consent-text {
        font-size: 13px;
        padding-right: 0;
        margin-bottom: 16px;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-consent-accept,
    .cookie-consent-decline {
        width: 100%;
        padding: 14px 24px;
    }
    .cookie-consent-close{
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
    }
}

/* Contact Banner */
.contact-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 750px;
    max-width: calc(100% - 40px);
    background-color: #1A1A1A;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 10001;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.contact-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.contact-banner-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #b7140f;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(204, 51, 34, 0.3);
}

.contact-banner-close:hover {
    background-color: #B02A1C;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(204, 51, 34, 0.4);
}

.contact-banner-close:active {
    transform: scale(0.95);
}

.contact-banner-close svg {
    width: 16px;
    height: 16px;
    display: block;
}

.contact-banner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-banner-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-banner-title {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.contact-banner-subtitle {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.4;
}

.contact-banner-form {
    display: flex;
    gap: 12px;
    align-items: center;
    background-color: #222222;
    padding: 16px;
    border-radius: 12px;
}

.contact-banner-input {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    background-color: #1A1A1A;
    border: 1px solid #b7140f;
    border-radius: 30px;
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: border-color 0.2s ease;
}

.contact-banner-input::placeholder {
    color: #FFFFFF;
    opacity: 0.7;
}

.contact-banner-input:focus {
    outline: none;
    border-color: #b7140f;
}

.contact-banner-phone {
    flex: 0 0 180px;
    min-width: 180px;
}

.contact-banner-submit {
    padding: 12px 24px;
    background-color: #b7140f;
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.contact-banner-submit:hover {
    background-color: #B02A1C;
}

.contact-banner-submit:active {
    transform: scale(0.98);
}

/* Mobile Responsive for Contact Banner */
@media (max-width: 768px) {
    .contact-banner {
        width: calc(100% - 40px);
        bottom: 20px;
        right: 20px;
        left: 20px;
        padding: 20px;
    }

    .residents-page{
        gap: 10px;
    }

    .contact-banner-content {
        gap: 16px;
    }

    .contact-banner-title {
        font-size: 18px;
    }

    .contact-banner-subtitle {
        font-size: 11px;
    }

    .contact-banner-form {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }

    .contact-banner-input {
        width: 100%;
        min-width: 100%;
    }

    .contact-banner-phone {
        width: 100%;
        flex: 1;
        min-width: 100%;
    }

    .contact-banner-submit {
        width: 100%;
    }

    .contact-banner-close {
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
    }

    .contact-banner-close svg {
        width: 14px;
        height: 14px;
    }
}


@media (max-width: 480px){
    .sponsors-title, .video-title, .benefits-title, .benefits-event-title, .benefits-event-title, .program-schedule-title, .pricing-main-title, .pricing-sub-title, .participants-main-title, .reviews-main-title, .gallery-main-title, .faq-main-title{
        font-size: 20px;
    }
    .residents-page {
        gap: 5px;
    }
    .business-card-title, .card-number, .business-card-number, .business-areas-title, .residents-subtitle, .banner-title-white, .features-main-title, .banner-title-red{
        font-size: 18px;
    }
    .card-description, .business-card-description, .general-sponsor-subtitle, .participant-company{
        font-size: 16px;
    }
    .benefit-title, .speaker-name{
        font-size: 18px;
    }
    .benefit-description, .speaker-description{
        font-size: 16px;
    }
    .cta-button{
        font-size: 14px;
    }
    .program-time, .program-activity-title{
        font-size: 16px;
    }
    .program-number{
        font-size: 30px;
        width: 25px;
    }
    .pricing-included-title, .pricing-features-list li, .pricing-features-list li::before, .pricing-bonus-title{
        font-size: 16px;
    }
    .pricing-bonus-text{
        font-size: 16px;
    }
    .pricing-disclaimer{
        font-size: 12px;

    }
    .countdown-urgency-text, .countdown-remaining-text{
        font-size: 18px;
    }
    .participant-name,.review-role, .faq-question{
        font-size: 18px;
    }
    .participant-description, .review-text{
        font-size: 16px;
    }
    .participant-cta-button{
        font-size: 14px;
    }
    .faq-answer-paragraph, .faq-answer-text{
        font-size: 16px;
    }
    .faq-answer, .faq-item-active .faq-answer{
        padding-left: 55px !important;
    }
    .footer-nav-link, .footer-social-text-link, .footer-policy-link, .footer-copyright-text, .footer-language{
        font-size: 20px;
    }

    
}

@media (max-width: 400px){
    .logo-box {
        min-height: 56px;
        padding: 5px;
        font-size: 14px;
        border-radius: 5px;
    }
    
}

@media (max-width: 380px){
    .pricing-cards{
        height: 690px;
    }
}

/* Gallery Lightbox Styles */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100001;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.gallery-lightbox-close:hover {
    background-color: rgba(183, 20, 15, 0.8);
    border-color: #b7140f;
    transform: rotate(90deg);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100001;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.gallery-lightbox-prev {
    left: 20px;
}

.gallery-lightbox-next {
    right: 20px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background-color: rgba(183, 20, 15, 0.8);
    border-color: #b7140f;
    transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    z-index: 100001;
}

.gallery-item {
    cursor: pointer;
}

.gallery-image {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 45px;
        height: 45px;
    }
    
    .gallery-lightbox-prev {
        left: 10px;
    }
    
    .gallery-lightbox-next {
        right: 10px;
    }
    
    .gallery-lightbox-close {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
    
    .gallery-lightbox-image {
        max-height: 80vh;
    }
    
    .gallery-lightbox-counter {
        font-size: 16px;
        padding: 8px 16px;
        bottom: 10px;
    }
    .gallery-grid-4 .gallery-item:nth-child(3){
        grid-column: 1 / -1;
        aspect-ratio: 16 / 9;
    }
    .gallery-grid-4 .gallery-item:nth-child(4){
        grid-column: 1;
        grid-row: 3;
        aspect-ratio: 4 / 3;
    }
    .gallery-grid-4 .gallery-item:nth-child(5){
        grid-column: 2;
        grid-row: 3 / span 2;
        aspect-ratio: 2 / 3.1;
    }
}