/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 124, 92, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 124, 92, 0.6);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes buttonShimmer {
    0% {
        transform: translateX(-100%) scaleX(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(0%) scaleX(1);
        opacity: 1;
    }
    100% {
        transform: translateX(100%) scaleX(0);
        opacity: 0.8;
    }
}

@keyframes gradientPulse {
    0%, 100% {
        background-size: 100% 100%;
        opacity: 1;
    }
    50% {
        background-size: 120% 120%;
        opacity: 0.9;
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-left.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-right.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.animate-visible {
    opacity: 1;
    transform: scale(1);
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

.animate-delay-6 {
    transition-delay: 0.6s;
}

/* Enhanced hover effects for interactive elements */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 124, 92, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.burger-nav-link {
    position: relative;
    overflow: hidden;
}

.burger-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 124, 92, 0.3), transparent);
    transition: left 0.5s;
}

.burger-nav-link:hover::before {
    left: 100%;
}

/* Digital glow effects for buttons */
.btn-registration:hover {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Enhanced card hover transitions */
.advantage-card,
.change-card,
.speaker-card,
.pricing-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.advantage-card:hover,
.change-card:hover,
.speaker-card:hover,
.pricing-card:hover {
    backdrop-filter: blur(5px);
}

/* Digital pulse animation for badges */
.badge {
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge:hover {
    animation: pulse 0.8s ease-in-out;
    backdrop-filter: blur(5px);
}

/* Enhanced mascot animation */
.mascot-img {
    transition: transform 0.3s ease;
}

/* Digital border glow for timer */
.timer-container {
    position: relative;
    overflow: hidden;
}

.timer-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF7C5C, #FFB3A7, #AE8EBA, #FF7C5C);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timer-container:hover::before {
    opacity: 0.3;
    animation: shimmer 2s linear infinite;
}

/* Enhanced FAQ hover effects */
.faq-question {
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 124, 92, 0.1), transparent);
    transition: left 0.6s;
}

.faq-question:hover::before {
    left: 100%;
}

/* Digital ripple effect for buttons */
.btn, .card-button, .btn-registration {
    position: relative;
    overflow: hidden;
}

.btn::after, .card-button::after, .btn-registration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after, .card-button:active::after, .btn-registration:active::after {
    width: 300px;
    height: 300px;
}

/* Enhanced floating buttons */
.floating-buttons {
    animation: float 3s ease-in-out infinite;
}

.floating-buttons:hover {
    animation-play-state: paused;
}

/* Digital typing effect for text elements */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #FF7C5C; }
}

/* Responsive animation adjustments */
@media (max-width: 768px) {
    .animate-on-scroll {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .advantage-card:hover,
    .change-card:hover,
    .speaker-card:hover,
    .pricing-card:hover {
        transform: translateY(-1px) scale(1.002);
    }

    .timer-container::before {
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .animate-on-scroll {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .advantage-card:hover,
    .change-card:hover,
    .speaker-card:hover,
    .pricing-card:hover {
        transform: translateY(-2px) scale(1.005);
    }
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFF7ED;
    color: #2F2D2E;
    line-height: 1;
    overflow-x: hidden;
}

.container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 100px 20px 0px 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    max-width: 1420px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo-container {
    width: 120px;
    height: 58px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.logo {
    width: 40px;
    height: 35px;
}

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

.nav-container {
    height: 58px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 40px;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #2F2D2E;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.3s ease;
}

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

/* Burger Menu */
.burger-menu {
    position: relative;
    display: none;
}

.burger-button {
    width: 58px;
    height: 58px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.burger-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.burger-line {
    width: 24px;
    height: 2px;
    background-color: #2F2D2E;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.burger-button.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger-button.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.burger-nav {
    position: absolute;
    top: 90px;
    right: 0;
    width: 320px;
    background-color: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.burger-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.burger-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #2F2D2E;
    text-decoration: none;
    line-height: 1.2;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
}

.burger-nav-link:last-child {
    border-bottom: none;
}

.burger-nav-link:hover {
    background-color: rgba(255, 124, 92, 0.12);
    color: #FF7C5C;
    padding-left: 35px;
}

/* Hero Section */
.hero-section {
    display: flex;
    gap: 20px;
    margin-top: 100px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.hero-left {
    width: 700px;
    flex-shrink: 0;
}

.badges-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.badge {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    height: 110px;
}

.badge-outline {
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 1000px;
    width: 320px;
    background-color: transparent;
}

.badge-solid {
    color: #2F2D2E;
    background-color: #AE8EBA;
}

.badge-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    background: linear-gradient(90deg, #7c3aed 0%, #b23e7a 50%, #d86834 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.badge-text-large {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 80px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;
}

.badge-text-medium {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    text-align: left;
}

.badge-mlm {
    background-color: #AE8EBA;
    width: 360px;
}

.badge-revolution {
    background-color: #FF7C5C;
    width: 700px;
}

.badge-version {
    background-color: #FFB3A7;
    width: 280px;
}

.badge-description {
    width: 400px;
    border-radius: 10px;
}

/* Mascot Section */
.hero-right {
    width: 700px;
    position: relative;
}

.mascot-container {
    position: relative;
    width: 700px;
    height: 370px;
    border-radius: 10px;
    overflow: visible;
}

.mascot-bg {
    max-width: 660px;
    width: 100%;
    height: 100%;
    background-image: url('img/bg-mascot-hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    border-radius: 10px;
}

.mascot-character {
    position: relative;
    text-align: center;
    margin-bottom: -2px;
}

.mascot-img {
    width: 420px;
    height: 420px;
    object-fit: contain;
    margin-top: 0;
}

/* Opening Section */
.opening-section {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.opening-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.opening-left {
    display: block;
}

.opening-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    width: 100%;
}

.opening-date-container {
    margin-left: 0;
}

.opening-date {
    background-color: #FF7C5C;
    border-radius: 10px;
    padding: 10px 20px;
    margin-top: 20px;
}

.date-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;
}

.opening-right {
    display: flex;
    align-items: center;
}

.timer-container {
    background-color: #353535;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 640px;
    height: auto;
    min-height: 136px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.timer-display {
    display: flex;
    gap: 40px;
    align-items: center;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.timer-number {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 76px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #FFFFFF;
}

.timer-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #CCC5C5;
}

/* Automation Section */
.automation-section {
    margin-bottom: 20px;
}

.automation-header {
    margin-bottom: 50px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Video Section */
.video-section {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background-color: #252525;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 124, 92, 0.1);
    transition: all 0.3s ease;
    margin: 0 auto;
    aspect-ratio: 16/9; /* Фиксированная пропорция 16:9 */
    height: auto;
}

.video-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 124, 92, 0.4);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    object-fit: fill; /* Заполняем весь контейнер без сохранения пропорций */
}

.automation-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    background-color: #FFB3A7;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
    text-align: center;
}

.automation-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 125%;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    max-width: 700px;
    margin-top: 5px;
    text-align: center;
}

.advantages-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}

.advantage-card {
    flex: 1;
    height: auto;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
}

.card-number {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #FF7C5C;
    margin-top: 0;
}

.card-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
    margin-bottom: 0;
}

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.network-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 1000;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-buttons.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-buttons::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1000px;
    backdrop-filter: blur(10px);
    z-index: -1;
}

.btn {
    border: none;
    border-radius: 1000px;
    padding: 10px;
    width: 240px;
    height: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #FF7C5C;
    color: white;
    white-space: normal;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.6);
    color: #2F2D2E;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.text-primary-btn{
    max-width: 185px;
}

.btn-secondary {
    color: #2F2D2E;
    background: radial-gradient(ellipse at top left, #ffb6b9 0%, #fb8076 80%, #fdd49b 100%);
    box-shadow: 0 4px 24px 0 rgba(255, 136, 126, 0.18);
    color: #fff;
    border: none;

}

.btn-secondary:hover {
    background-color: #ff6b4a;
}

/* Black Button */
.btn-black {
    width: 600px;
    height: 60px;
    background-color: #FF7C5C;
    color: white;
    border: none;
    border-radius: 1000px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-black:hover {
    background-color: rgba(47, 45, 46, 0.8);
    transform: translateY(-2px);
}

.btn-black::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-black:active::after {
    width: 300px;
    height: 300px;
}

/* Special animated black button for "Участвовать бесплатно" after changes section */
.free-participation-container .btn-black {
    background: linear-gradient(45deg, #FF7C5C, #FFB3A7, #AE8EBA, #FF7C5C);
    background-size: 300% 300%;
    animation: gradientShift 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.free-participation-container .btn-black:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 124, 92, 0.4);
    animation: gradientShift 1.5s ease-in-out infinite, gradientPulse 2s ease-in-out infinite;
}

.free-participation-container .btn-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.free-participation-container .btn-black:hover::before {
    left: 100%;
}

/* Black Button Responsive */
@media (max-width: 768px) {
    .btn-black {
        width: 100%;
        max-width: 500px;
        height: 60px;
        font-size: 18px;
    }
}


@media (max-width: 480px) {
    .btn-black {
        height: 55px;
        font-size: 16px;
    }
}


/* Responsive Design */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    .opening-date{
        margin-right: 20px;
    }
    .hero-section {
        gap: 15px;
    }

    .advantages-container {
        gap: 20px;
    }

    .advantage-card {
        padding: 20px;
    }





    .hero-left {
        width: 680px;
    }

    .hero-right {
        width: 680px;
    }

    .mascot-container {
        width: 680px;
        height: 360px;
    }

    .mascot-img {
        width: 400px;
        height: 400px;
    }

    .badges-container {
        gap: 18px;
    }

    .badge-row {
        gap: 18px;
    }

    .badge {
        padding: 18px;
        height: 105px;
    }

    .badge-outline {
        width: 310px;
    }

    .badge-mlm {
        width: 350px;
    }

    .badge-revolution {
        width: 680px;
    }

    .badge-version {
        width: 270px;
    }

    .badge-description {
        width: 385px;
    }

    .badge-text {
        font-size: 40px;
    }

    .badge-text-large {
        font-size: 75px;
    }

    .badge-text-medium {
        font-size: 24px;
    }
    .mascot-bg{
        max-width: 465px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .opening-title{
        font-size: 40px;
    }
    .date-text{
        font-size: 40px;
    }

    .hero-section {
        gap: 12px;
    }

    .hero-left {
        width: 580px;
    }

    .hero-right {
        width: 580px;
    }

    .mascot-container {
        width: 580px;
        height: 320px;
    }

    .mascot-img {
        width: 350px;
        height: 350px;
    }

    .badges-container {
        gap: 15px;
    }

    .badge-row {
        gap: 15px;
    }

    .badge {
        padding: 15px;
        height: 90px;
    }

    .badge-outline {
        width: 260px;
    }

    .badge-mlm {
        width: 290px;
    }

    .badge-revolution {
        width: 580px;
    }

    .badge-version {
        width: 230px;
    }

    .badge-description {
        width: 320px;
    }

    .badge-text {
        font-size: 35px;
    }

    .badge-text-large {
        font-size: 65px;
    }

    .badge-text-medium {
        font-size: 20px;
    }
    .mascot-bg{
        max-width: 370px;
    }
    .opening-date{
        max-width: 350px;
    }

    .automation-title {
        font-size: 40px;
    }

    .automation-subtitle {
        font-size: 40px;
    }

    .advantages-container {
        gap: 20px;
    }

    .advantage-card {
        padding: 20px;
    }

  


}
@media (max-width: 1000px) {
    .hero-section{
        display: block;
        max-width: 960px;
    }
    .badges-container{
        max-width: 960px;
    }
    .mascot-bg{
        margin-top: 20px;
        max-width: 960px;
        width: 100%;
    }

    .hero-section {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .mascot-container {
        width: 100%;
        height: 400px;
    }

    .mascot-img {
        width: 300px;
        height: 300px;
    }

    .badges-container {
        gap: 20px;
    }

    .badge-row {
        gap: 20px;
    }

    .badge {
        padding: 20px;
        height: auto;
        min-height: 90px;
    }

    .badge-outline {
        width: 40%;
    }

    .badge-mlm {
        width: 60%;
    }

    .badge-revolution {
        width: 100%;
    }

    .badge-version {
        width: 40%;
    }

    .badge-description {
        width: 60%;
    }

    .badge-text {
        font-size: 32px;
    }

    .badge-text-large {
        font-size: 42px;
    }

    .badge-text-medium {
        font-size: 20px;
    }
    .opening-title{
        font-size: 38px;
    }
    .date-text{
        font-size: 38px;
    }
    .timer-number{
        font-size: 50px;
    }
    .timer-display{
        font-size: 14px;
    }

    .automation-section {
        margin-bottom: 30px;
    }

    .automation-header {
        margin-bottom: 30px;
    }

    .automation-title {
        font-size: 38px;
        padding: 10px 20px;
    }

    .automation-subtitle {
        font-size: 38px;
        max-width: 750px;
    }

    /* Video Section Responsive */
    .video-section {
        margin-bottom: 40px;
        padding: 0 15px;
    }

.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 124, 92, 0.2);
    transition: all 0.3s ease;
    margin: 0 auto;
}

/* Show burger menu and hide regular nav on mobile */
    .nav {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    /* Ensure burger menu is properly positioned on mobile */
    .header-right {
        position: relative;
    }

}
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .opening-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .timer-container {
        width: 100%;
        padding: 20px;
        min-height: 120px;
    }

    .timer-display {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .timer-number {
        font-size: 48px;
    }

    .timer-label {
        font-size: 16px;
    }

    .floating-buttons {
        left: 20px;
        right: 20px;
        bottom: 20px;
        justify-content: center;
        flex-direction: row;
        gap: 8px;
        max-width: 350px;
        margin: 0 auto;
    }

    .btn {
        width: 180px;
        height: 80px;
        font-size: 16px;
        padding: 8px;
    }
    .opening-date{
        margin-right: 0px;
    }

    .automation-section {
        margin-bottom: 25px;
    }


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

    .automation-subtitle {
        font-size: 32px;
    }
    .opening-title, .date-text{
        font-size: 32px;
    }

    .advantages-container {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .advantage-card {
        padding: 20px;
    }




    .card-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }

    /* Burger menu responsive styles for tablets */
    .burger-nav {
        width: 280px;
        top: 85px;
    }

    .burger-nav-link {
        padding: 22px 25px;
        font-size: 20px;
    }

}
@media (max-width: 600px) {
    .badge-text-medium{
        font-size: 16px;
    }
    .badge-text{
        font-size: 24px;
    }
    .badge-text-large{
        font-size: 32px;
    }
    .badges-container{
        gap: 15px;
    }

    .automation-section {
        margin-bottom: 20px;
    }


    .automation-title {
        font-size: 24px;
    }

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

    .advantages-container {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .advantage-card {
        padding: 20px;
    }



  

    .card-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 6px;
    }

    /* Burger menu responsive styles for small mobile */
    .burger-nav {
        width: 260px;
        top: 80px;
    }

    .burger-nav-link {
        padding: 20px 22px;
        font-size: 18px;
    }

}

@media (max-width: 480px) {
    .hero-section {
        margin-top: 30px;
    }

    .badge {
        padding: 12px;
        min-height: 50px;
    }

    .badge-outline {
        width: 48%;
    }

    .badge-mlm {
        width: 48%;
    }

    .badge-version {
        width: 48%;
    }

    .badge-description {
        width: 48%;
    }

    .badge-text {
        font-size: 20px;
    }

    .badge-text-large {
        font-size: 28px;
    }

    .badge-text-medium {
        font-size: 16px;
    }

    .timer-container {
        padding: 15px;
        min-height: 100px;
    }

    .timer-number {
        font-size: 36px;
    }

    .timer-display {
        gap: 15px;
        justify-content: center;
    }

    .timer-label {
        font-size: 14px;
    }

    .floating-buttons {
        gap: 6px;
        max-width: 290px;

    }

    .btn {
        width: 140px;
        height: 70px;
        font-size: 14px;
        padding: 6px;
    }
    .date-text{
        font-size: 24px;
    }
    .opening-date{
        margin-top: 10px;
    }
    .opening-title{
        font-size: 24px;
    }
    .badge-version {
        width: 30%;
    }

    .badge-description {
        width: 70%;
    }
    .badges-container{
        gap: 10px;
    }
    .mascot-bg{
        max-height: 350px;
    }

    .automation-section {
        margin-bottom: 15px;
    }

    .automation-header {
        margin-bottom: 15px;
    }

    .automation-title {
        font-size: 20px;
        padding: 5px 10px;
        margin-bottom: 10px;
        display: block;
    }

    .automation-subtitle {
        font-size: 18px;
    }

    .advantages-container {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .advantage-card {
        padding: 20px;
    }




    .card-icon {
        width: 25px;
        height: 25px;
        margin-bottom: 4px;
    }

    /* Burger menu responsive styles for extra small mobile */
    .burger-nav {
        width: 240px;
        top: 75px;
    }

    .burger-nav-link {
        padding: 18px 20px;
        font-size: 16px;
    }

}

@media (max-width: 360px) {
    .timer-container {
        padding: 12px;
        min-height: 90px;
    }

    .timer-number {
        font-size: 28px;
    }

    .timer-display {
        gap: 12px;
        justify-content: center;
    }

    .timer-label {
        font-size: 12px;
    }

    .floating-buttons {
        gap: 4px;
        max-width: 247px;
    }

    .btn {
        width: 120px;
        height: 60px;
        font-size: 12px;
        padding: 4px;
    }

    .automation-section {
        margin-bottom: 12px;
    }

    .automation-header {
        margin-bottom: 12px;
    }

    .automation-title {
        font-size: 18px;
        padding: 4px 8px;
        margin-bottom: 8px;
        display: block;
    }

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

    .advantages-container {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .advantage-card {
        padding: 20px;
    }

    .card-icon {
        width: 22px;
        height: 22px;
        margin-bottom: 3px;
    }

    /* Burger menu responsive styles for very small mobile */
    .burger-nav {
        width: 220px;
        top: 70px;
    }

    .burger-nav-link {
        padding: 16px 18px;
        font-size: 15px;
    }

}

/* FAQ Section */
.faq-section {
    margin-bottom: 20px;
}

.faq-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    margin-bottom: 60px;
    text-align: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.faq-question {
    background-color: rgba(255, 124, 92, 0.1);
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 124, 92, 0.15);
}

.faq-question h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    margin: 0;
    flex: 1;
}

.faq-icon {
    margin-left: 20px;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background-color: #FF7C5C;
}

.faq-item.active .faq-icon svg path {
    stroke: #FFFFFF;
}

.faq-answer {
    padding: 30px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.faq-answer a {
    color: #FF7C5C;
    text-decoration: none;
    transition: opacity 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.faq-answer a:hover {
    opacity: 0.8;
}

/* FAQ Active State */
.faq-item.active .faq-answer {
    max-height: none;
    opacity: 1;
    padding: 30px;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: visible;
    box-sizing: border-box;
    height: auto;
}

.faq-item .faq-answer {
    max-height: 0;
    opacity: 0;
    padding: 0 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    height: 0;
}

/* Footer */
.footer {
    margin-bottom: 50px;
}

.footer-content {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

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

/* FAQ and Footer Responsive */
@media (max-width: 1440px) {
    .faq-title {
        font-size: 44px;
    }

    .faq-question h3 {
        font-size: 26px;
    }

    .faq-answer p {
        font-size: 18px;
    }

    .footer-links {
        gap: 35px;
    }

    .footer-link {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .faq-title {
        font-size: 40px;
    }

    .faq-question h3 {
        font-size: 24px;
    }

    .faq-answer p {
        font-size: 17px;
    }

    .footer-links {
        gap: 30px;
    }

    .footer-link {
        font-size: 14px;
    }
}

@media (max-width: 1000px) {
    .faq-section {
        margin-top: 100px;
    }

    .faq-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .faq-container {
        gap: 25px;
    }

    .faq-question {
        padding: 25px;
    }

    .faq-question h3 {
        font-size: 22px;
    }

    .faq-answer {
        padding: 25px;
    }

    .faq-answer p {
        font-size: 16px;
    }

    .footer {
        margin-top: 100px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 35px;
    }

    .footer-links {
        gap: 25px;
        justify-content: center;
    }

    .footer-link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        margin-top: 80px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-container {
        gap: 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 20px;
    }

    .faq-answer {
        padding: 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .footer {
        margin-top: 80px;
    }

    .footer-content {
        padding: 30px;
        gap: 25px;
    }

    .footer-links {
        gap: 20px;
        flex-direction: column;
    }

    .footer-link {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .faq-section {
        margin-top: 60px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .faq-container {
        gap: 18px;
    }

    .faq-question {
        padding: 18px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

    .faq-answer {
        padding: 18px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .footer {
        margin-top: 60px;
    }

    .footer-content {
        padding: 25px;
        gap: 20px;
    }

    .footer-text {
        font-size: 16px;
        text-align: center;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-link {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        margin-top: 50px;
    }

    .faq-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .faq-container {
        gap: 15px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer {
        padding: 15px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .footer {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .footer-content {
        padding: 20px;
        gap: 18px;
    }

    .footer-text {
        font-size: 14px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-link {
        font-size: 11px;
        max-width: 320px;
    }
}

@media (max-width: 360px) {
    .faq-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .faq-container {
        gap: 12px;
    }

    .faq-question {
        padding: 12px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer {
        padding: 12px;
    }

    .faq-answer p {
        font-size: 12px;
    }

    .footer-content {
        padding: 15px;
        gap: 15px;
    }

    .footer-text {
        font-size: 13px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-link {
        font-size: 10px;
    }
}

/* Changes Section */
.changes-section {
    margin-top: 100px;
    margin-bottom: 20px;
}

.changes-container {
    background-image: url('img/bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    position: relative;
}

.changes-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    text-align: center;
    margin-bottom: 60px;
}

.changes-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
}

.change-card {
    width: 100%;
    max-width: 440px;
    height: auto;
    min-height: 390px;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    margin-bottom: 20px;
}
.card-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.05em;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    text-align: center;
}

.text-li{
    font-weight: 500;
    background: linear-gradient(90deg, #7c3aed 0%, #b23e7a 50%, #d86834 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Changes Section Responsive - Mobile First Approach */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .changes-cards {
        gap: 25px;
        grid-template-columns: repeat(3, minmax(420px, 480px));
        justify-content: center;
        max-width: 1500px;
        margin: 0 auto;
    }

    .change-card {
        min-height: 420px;
        max-width: 480px;
    }

    .card-title {
        font-size: 34px;
    }
}

/* Desktop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .changes-cards {
        gap: 20px;
        grid-template-columns: repeat(3, minmax(360px, 420px));
        justify-content: center;
        max-width: 1300px;
        margin: 0 auto;
    }

    .change-card {
        min-height: 380px;
        max-width: 420px;
    }

    .card-title {
        font-size: 30px;
    }

    .card-description {
        font-size: 22px;
    }
}

/* Small Desktop (1000px - 1199px) */
@media (min-width: 1000px) and (max-width: 1199px) {
    .changes-cards {
        gap: 20px;
        grid-template-columns: repeat(3, minmax(300px, 360px));
        justify-content: center;
        max-width: 1150px;
        margin: 0 auto;
    }

    .change-card {
        min-height: 340px;
        max-width: 360px;
        padding: 25px;
    }

    .card-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .card-description {
        font-size: 20px;
    }

    .card-icon-wrapper {
        margin-bottom: 25px;
    }
}

/* Tablets (768px - 999px) */
@media (min-width: 768px) and (max-width: 999px) {
    .changes-section {
        margin-top: 100px;
    }

    .changes-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
        margin: 0 auto;
    }

    .change-card {
        min-height: 320px;
        padding: 25px;
    }

    .card-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .card-description {
        font-size: 18px;
    }
}

/* Small Mobile (up to 767px) - 1 column */
@media (max-width: 767px) {
    .changes-section {
        margin-top: 80px;
    }

    .changes-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .changes-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .change-card {
        min-height: 280px;
        padding: 25px;
        max-width: 100%;
    }

    .card-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .card-description {
        font-size: 18px;
    }

    .card-icon-wrapper {
        margin-bottom: 20px;
    }
}

/* Extra Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .changes-section {
        margin-top: 60px;
    }

    .changes-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .changes-container {
        margin-bottom: 15px;
    }

    .card-description {
        font-size: 18px;
    }

    .card-icon-wrapper {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .changes-section {
        margin-top: 60px;
    }

    .changes-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .change-card {
        min-height: 250px;
        padding: 20px;
    }

    .card-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .card-description {
        font-size: 16px;
    }

    .card-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .card-icon-img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .changes-section {
        margin-top: 50px;
    }

    .changes-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .changes-container {
        padding: 15px;
    }

    .change-card {
        min-height: 220px;
        padding: 18px;
    }

    .card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .card-description {
        font-size: 16px;
    }

    .card-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .card-icon-img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 360px) {
    .changes-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .changes-container {
        padding: 12px;
    }

    .change-card {
        min-height: 200px;
        padding: 15px;
    }

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

    .card-description {
        font-size: 14px;
    }

    .card-icon-wrapper {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .card-icon-img {
        width: 45px;
        height: 45px;
    }
}

/* Pricing Cards Section */
.pricing-section {
    margin-top: 100px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1500px;
    margin: 0 auto;
}

.pricing-card {
    width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.standart-card {
    min-height: 500px;
}

.vip-card {
    min-height: 550px;
    margin-top: -50px;
}

.platinum-card {
    min-height: 600px;
    margin-top: -100px;
}

.card-image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.pricing-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 460px;
}

.card-tariff {
    width: 100%;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.tariff-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #2F2D2E;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #2F2D2E;
    text-align: center;
    margin-bottom: 20px;
    max-width: 400px;
}

.card-button {
    width: 100%;
    height: 60px;
   background: linear-gradient(100deg, #ff867e 0%, #fdaf7b 55%, #ffc8a5 100%);
    box-shadow: 0 2px 15px 0 rgba(255, 136, 126, 0.15);
    color: #fff;
    border: none;
    background-size: 300% 300%;
    border: none;
    border-radius: 1000px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.standard-btn{
    background: none;
    background-color: #FF7C5C;
}

.card-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 124, 92, 0.4);
    animation: gradientShift 1.5s ease-in-out infinite, gradientPulse 2s ease-in-out infinite;
}

.card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.card-button:hover::before {
    left: 100%;
}

.card-description {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    padding: 20px;
    flex-grow: 1;
}

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

.description-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.description-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    margin-bottom: 12px;
    text-align: left;
    padding-left: 5px;
}

.pricing-info {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.original-price-badge{
    margin-top: 20px;
}

.price-badge {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    padding: 18px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-badge:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: rgba(47, 45, 46, 0.65);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.price-value {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    transition: all 0.3s ease;
}

.original-price-badge .price-value {
    color: rgba(47, 45, 46, 0.45);
    text-decoration: line-through;
    font-weight: 500;
    font-size: 20px;

}

.special-price-badge {
    background: linear-gradient(135deg, rgba(255, 124, 92, 0.08), rgba(255, 179, 167, 0.04));
    border: 1px solid rgba(109, 54, 40, 0.1);
    position: relative;
}

.special-price-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 124, 92, 0.02), transparent);
    border-radius: 10px;
    pointer-events: none;
}

.special-price-badge .price-value {
    color: #FF7C5C;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: -5%;
}

.special-price-badge .price-label {
    color: rgba(255, 124, 92, 0.7);
    font-weight: 500;
}

/* Pricing Cards Responsive */
@media (max-width: 1440px) {
    .pricing-cards {
        gap: 25px;
        max-width: 1400px;
    }

    .pricing-card {
        width: 440px;
    }

    .card-title {
        font-size: 22px;
    }

    .description-list li {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .pricing-cards {
        gap: 20px;
        max-width: 1200px;
    }

    .pricing-card {
        width: 380px;
    }

    .card-title {
        font-size: 20px;
    }

    .description-list li {
        font-size: 15px;
    }

    .pricing-section {
        margin-top: 200px;
    }

    .special-price-badge .price-value {
        font-weight: 600;
        font-size: 32px;
    }
}

@media (max-width: 1000px) {
    .pricing-section {
        margin-top: 100px;
    }
    .vip-card {
        margin-top: 0px;
    }

    .platinum-card {
        margin-top: 0px;
    }

    .pricing-cards {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        max-width: 600px;
    }

    .pricing-card {
        width: 100%;
        max-width: 460px;
    }

    .card-title {
        font-size: 22px;
    }

    .description-list li {
        font-size: 16px;
    }

    .special-price-badge .price-value {
        font-weight: 600;
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        margin-top: 80px;
    }

    .pricing-cards {
        gap: 30px;
        padding: 0 20px;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
    }

    .card-title {
        font-size: 20px;
    }

    .description-list li {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .pricing-section {
        margin-top: 60px;
    }

    .pricing-cards {
        gap: 25px;
        padding: 0 15px;
    }

    .pricing-card {
        max-width: 350px;
    }

    .card-title {
        font-size: 18px;
    }

    .description-list li {
        font-size: 14px;
    }

    .card-tariff {
        height: 55px;
    }

    .tariff-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        margin-top: 50px;
    }

    .pricing-cards {
        gap: 20px;
        padding: 0 10px;
    }

    .pricing-card {
        max-width: 320px;
    }

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

    .description-list li {
        font-size: 13px;
    }

    .card-tariff {
        height: 50px;
        margin-bottom: 8px;
    }

    .tariff-text {
        font-size: 16px;
    }

    .card-description {
        padding: 15px;
    }

    .pricing-info {
        margin-bottom: 15px;
        gap: 6px;
    }

    .original-price {
        font-size: 18px;
    }

    .special-price {
        font-size: 20px;
        padding: 8px;
        margin: 0 10px;
    }

    .special-price::before {
        font-size: 16px;
        left: 10px;
    }
    .price-label{
        font-size: 10px;
    }

    .special-price::after {
        font-size: 10px;
        right: 10px;
        padding: 3px 6px;
    }
    .special-price-badge .price-value {
        font-weight: 500;
        font-size: 24px;
    }

    .original-price-badge .price-value {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .pricing-cards {
        padding: 0 8px;
    }

    .pricing-card {
        max-width: 280px;
    }

    .card-title {
        font-size: 15px;
    }

    .description-list li {
        font-size: 12px;
    }

    .card-tariff {
        height: 45px;
    }

    .tariff-text {
        font-size: 15px;
    }

    .card-description {
        padding: 12px;
    }

    .pricing-info {
        margin-bottom: 12px;
        gap: 5px;
    }

    .original-price {
        font-size: 16px;
    }

    .special-price {
        font-size: 18px;
        padding: 6px;
        margin: 0 8px;
    }

    .special-price::before {
        font-size: 14px;
        left: 8px;
    }

    .special-price::after {
        font-size: 9px;
        right: 8px;
        padding: 2px 4px;
    }

    .price-badge {
        padding: 12px 15px;
        gap: 8px;
    }

    .price-label {
        font-size: 12px;
    }

    .price-value {
        font-size: 18px;
    }

    .special-price-badge .price-value {
        font-size: 20px;
    }

    .price-badge {
        padding: 10px 12px;
        gap: 6px;
    }

    .price-label {
        font-size: 11px;
    }

    .price-value {
        font-size: 16px;
    }

    .special-price-badge .price-value {
        font-size: 18px;
    }
}

/* Speakers Section */
.speakers-section {
    margin-bottom: 20px;
}

.speakers-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    max-width: 1100px;
    text-align: center;
    padding: 0px 20px 20px 20px;
    margin: 0 auto;
}

.speakers-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.04em;
    color: #2F2D2E;
    margin-bottom: 15px;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
    padding: 0px 20px 0px 20px;
}

.speakers-container {
    margin-top: 60px;
}

.speakers-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.speaker-card {
    max-width: 460px;
    max-height: 260px;
    background-color: #2F2D2E;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-content {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    width: 100%;
    height: 100%;
    gap: 20px;
}

.speaker-image {
    width: 180px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.speaker-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}



.speaker-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.8;
    width: 100%;
}

/* Speakers Section Responsive */
@media (max-width: 1440px) {
    .speakers-title {
        font-size: 44px;
    }

    .speakers-description {
        font-size: 22px;
    }

    .speakers-row {
        gap: 18px;
    }

    .speaker-card {
        max-width: 440px;
    }

    .speaker-image {
        width: 160px;
        height: 180px;
    }

    .speaker-description {
        font-size: 16px;
    }
}

@media (min-width: 1000px) and (max-width: 1200px) {
    .speakers-title {
        font-size: 40px;
    }

    .speakers-description {
        font-size: 20px;
    }

    .speakers-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        max-width: 900px;
        margin: 50px auto 0;
    }

    .speakers-row {
        display: contents;
    }

    .speaker-card {
        max-width: none;
        width: 100%;
    }

    .speaker-image {
        width: 140px;
        height: 160px;
    }

    .speaker-description {
        font-size: 15px;
    }
}

@media (max-width: 1000px) {
    .speakers-section {
        margin-top: 100px;
    }

    .speakers-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .speakers-description {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .speakers-container {
        margin-top: 50px;
    }

    .speakers-row {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .speaker-card {
        max-width: 500px;
        max-height: none;
    }

    .speaker-content {
        padding: 25px;
        gap: 25px;
    }

    .speaker-image {
        width: 200px;
        height: 220px;
    }

    .speaker-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .speakers-section {
        margin-top: 80px;
    }

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

    .speakers-description {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .speakers-container {
        margin-top: 40px;
    }

    .speakers-row {
        gap: 20px;
    }

    .speaker-card {
        max-width: 450px;
    }

    .speaker-content {
        padding: 20px;
        gap: 20px;
    }

    .speaker-image {
        width: 160px;
        height: 180px;
    }

    .speaker-description {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .speakers-section {
        margin-top: 60px;
    }

    .speakers-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .speakers-description {
        font-size: 15px;
    }

    .speakers-container {
        margin-top: 35px;
    }

    .speakers-row {
        gap: 18px;
    }

    .speaker-card {
        max-width: 400px;
    }

    .speaker-content {
        padding: 18px;
        gap: 18px;
    }

    .speaker-image {
        width: 140px;
        height: 160px;
    }

    .speaker-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .speakers-section {
        margin-top: 50px;
    }

    .speakers-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .speakers-description {
        font-size: 14px;
    }

    .speakers-container {
        margin-top: 30px;
    }

    .speakers-row {
        gap: 15px;
    }

    .speaker-card {
        max-width: 350px;
    }

    .speaker-content {
        padding: 15px;
        gap: 15px;
    }

    .speaker-image {
        width: 120px;
        height: 140px;
    }

    .speaker-description {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .speakers-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .speakers-description {
        font-size: 13px;
    }

    .speakers-container {
        margin-top: 25px;
    }

    .speakers-row {
        gap: 12px;
    }

    .speaker-card {
        max-width: 300px;
    }

    .speaker-content {
        padding: 12px;
        gap: 12px;
    }

    .speaker-image {
        width: 100px;
        height: 120px;
    }

    .speaker-description {
        font-size: 12px;
    }
}



/* Registration Banner Section */
.registration-banner {
    margin-top: 100px;
}

.banner-container {
    max-width: 100%;
    height: auto;
    background-image: url('img/bg_2.png');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.gift-text-set{
    font-weight: 500;
  background: linear-gradient(90deg, #7c3aed 0%, #b23e7a 50%, #d86834 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.banner-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.banner-text {
    flex: 1;
    max-width: 720px;
    padding: 40px 0;
    text-align: center;
}

.banner-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 135%;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    max-width: 1000px;
    text-align: center;
    margin: 40px auto;
    margin-bottom: 0px;
}

.banner-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: black;
    padding: 20px 20px;
    font-size: 28px;
    border-radius: 10px;
    width: 100%;
    line-height: 130%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.banner-mascot {
    position: absolute;
    right: 40px;
    bottom: 0;
    width: 505px;
    height: 505px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mascot-banner-img {
    width: 505px;
    height: 505px;
    object-fit: contain;
    object-position: bottom center;
}

/* Registration Button */
.registration-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-registration {
    width: 600px;
    max-width: 1420px;
    height: 60px;
    background: linear-gradient(45deg, #FF7C5C, #FFB3A7, #AE8EBA, #FF7C5C);
    background-size: 300% 300%;
    border: none;
    border-radius: 1000px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease-in-out infinite;
}

.btn-registration:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 124, 92, 0.4);
    animation: gradientShift 1.5s ease-in-out infinite, gradientPulse 2s ease-in-out infinite;
}

.btn-registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.btn-registration:hover::before {
    left: 100%;
}

/* Registration Banner Responsive */
@media (max-width: 1440px) {
    .banner-container {
        width: 1200px;
        height: auto;
    }

    .banner-title {
        font-size: 38px;
    }

    .banner-description {
        font-size: 22px;
    }

    .banner-mascot {
        width: 420px;
        height: 420px;
        right: 30px;
    }

    .mascot-banner-img {
        width: 420px;
        height: 420px;
    }
}

@media (max-width: 1200px) {
    .banner-container {
        width: 1000px;
        height: auto;
    }

    .banner-title {
        font-size: 34px;
        max-width: 600px;
    }

    .banner-description {
        font-size: 20px;
        max-width: 550px;
    }

    .banner-mascot {
        width: 380px;
        height: 380px;
        right: 20px;
    }

    .mascot-banner-img {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 1000px) {
    .banner-container {
        width: 100%;
        height: auto;
    }

    .banner-content {
        flex-direction: column;
        align-items: center;
    }

    .banner-text {
        max-width: 100%;
        padding: 20px 0px;
    }

    .banner-title {
        margin: 20px auto;
    }

    .banner-description {
        font-size: 18px;
    }

    .banner-mascot {
        position: relative;
        width: 300px;
        height: 300px;
        right: auto;
        bottom: auto;
        align-self: center;
    }

    .mascot-banner-img {
        width: 300px;
        height: 300px;
        position: absolute;
    }
}

@media (max-width: 768px) {
    .banner-container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner-title {
        font-size: 28px;
        margin: 20px 40px;
    }

    .banner-description {
        font-size: 16px;
    }

    .banner-mascot {
        width: 250px;
        height: 250px;
    }

    .mascot-banner-img {
        width: 250px;
        height: 250px;
    }

    .btn-registration {
        height: 55px;
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .banner-container {
        height: auto;
    }
    .banner-title {
        font-size: 24px;
    }

    .banner-description {
        font-size: 14px;
    }

    .banner-mascot {
        width: 200px;
        height: 200px;
    }

    .mascot-banner-img {
        width: 200px;
        height: 200px;
    }

    .btn-registration {
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: auto;
    }

    .banner-title {
        font-size: 20px;
    }


    .banner-mascot {
        width: 160px;
        height: 160px;
    }

    .mascot-banner-img {
        width: 160px;
        height: 160px;
    }

    .btn-registration {
        height: 60px;
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .banner-container {
        height: auto;
    }

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



    .banner-mascot {
        width: 140px;
        height: 140px;
    }

    .mascot-banner-img {
        width: 140px;
        height: 140px;
    }

    .btn-registration {
        height: 50px;
        font-size: 16px;
    }
}

/* Program Section */
.program-section {
    margin-bottom: 20px;
}

.program-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    margin-bottom: 20px;
    text-align: center;
}

.program-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.04em;
    color: #2F2D2E;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
}

.program-date-container {
    width: 100%;
    margin-bottom: 20px;
}

.program-date {
    width: 100%;
    background-color: #FFB3A7;
    border-radius: 10px;
    padding: 30px;
    box-sizing: border-box;
    margin-top: 30px;
}

.date-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;

}

.program-schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.speaker-slot {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.speaker-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.speaker-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: white;
    margin: 0;
}

.speaker-topic {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.04em;
    color: #252525;
    margin: 0;
    max-width: 500px;
}

.speaker-time {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    margin-left: 20px;
    margin-right: 20px;
    text-align: right;
    white-space: nowrap;
}

/* Program Section Responsive */
@media (max-width: 1440px) {
    .program-title {
        font-size: 44px;
    }

    .program-description {
        font-size: 22px;
    }

    .date-text {
        font-size: 44px;
    }

    .speaker-name {
        font-size: 30px;
    }

    .speaker-topic {
        font-size: 24px;
    }

    .speaker-time {
        font-size: 38x;
    }
    .speaker-image{
        max-width: 140px;
        height: auto;
    }
    .speaker-content{
        height: auto;
    }
    .speaker-card{
        height: auto;
    }
}

@media (max-width: 1200px) {
    .program-title {
        font-size: 40px;
    }

    .program-description {
        font-size: 20px;
    }

    .date-text {
        font-size: 40px;
    }

    .speaker-name {
        font-size: 28px;
    }

    .speaker-topic {
        font-size: 20px;
    }

    .speaker-time {
        font-size: 36px;
    }
}

@media (max-width: 1000px) {
    .program-title {
        font-size: 36px;

    }

    .program-description {
        font-size: 18px;
        max-width: 500px;
        margin-bottom: 50px;
    }

    .date-text {
        font-size: 36px;
        text-align: center;
        padding-left: 0;
    }

    .speaker-slot {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .speaker-info {
        margin-left: 0;
    }

    .speaker-name {
        font-size: 26px;
    }

    .speaker-topic {
        font-size: 18px;
    }

    .speaker-time {
        font-size: 32px;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .program-title {
        font-size: 32px;
    }

    .program-description {
        font-size: 16px;
    }

    .date-text {
        font-size: 32px;
    }

    .speaker-name {
        font-size: 24px;
    }

    .speaker-topic {
        font-size: 18px;
    }

    .speaker-time {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .program-section {
        margin-top: 100px;
    }

    .program-title {
        font-size: 28px;
    }

    .program-description {
        font-size: 15px;
    }

    .date-text {
        font-size: 28px;
    }

    .speaker-slot {
        padding: 15px;
    }

    .speaker-name {
        font-size: 20px;
    }

    .speaker-topic {
        font-size: 16px;
    }

    .speaker-time {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .program-section {
        margin-top: 80px;
    }

    .program-title {
        font-size: 24px;
    }

    .program-description {
        font-size: 14px;
    }

    .date-text {
        font-size: 24px;
    }

    .speaker-slot {
        padding: 12px;
    }

    .speaker-name {
        font-size: 20px;
    }

    .speaker-topic {
        font-size: 16px;
    }

    .speaker-time {
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .program-title {
        font-size: 22px;
    }

    .program-description {
        font-size: 13px;
    }

    .date-text {
        font-size: 22px;
    }

    .speaker-slot {
        padding: 10px;
    }

    .speaker-name {
        font-size: 18px;
    }

    .speaker-topic {
        font-size: 16px;
    }

    .speaker-time {
        font-size: 18px;
    }
}

/* Testimonials Slider Section */
.testimonials-section {
    margin-bottom: 20px;
    padding: 0 20px;
}

.testimonials-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.testimonial-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.testimonial-nav-btn:hover {
    background-color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 124, 92, 0.3);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.testimonial-prev-btn {
    left: 20px;
}

.testimonial-next-btn {
    right: 20px;
}

.testimonial-card {
    width: 100%;
    height: 500px;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.18);
}

.testimonial-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.02);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #FF7C5C;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator.active {
    background-color: #FF7C5C;
    transform: scale(1.2);
}

.indicator.active::before {
    width: 6px;
    height: 6px;
    background-color: #FFFFFF;
}

/* Testimonials Section Responsive */
@media (max-width: 1440px) {
    .testimonials-title {
        font-size: 44px;
    }

    .testimonials-container {
        gap: 35px;
    }

    .testimonial-card {
        width: 550px;
        height: 370px;
    }
}

@media (max-width: 1200px) {
    .testimonials-title {
        font-size: 40px;
    }

    .testimonials-container {
        gap: 30px;
    }

    .testimonial-card {
        width: 500px;
        height: 340px;
    }

    .testimonial-nav-btn {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 1000px) {
    .testimonials-section {
        margin-top: 100px;
    }

    .testimonials-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .testimonials-container {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-card {
        width: 100%;
        max-width: 500px;
        height: 350px;
    }

    .testimonial-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .testimonial-prev-btn {
        left: 20px;
    }

    .testimonial-next-btn {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        margin-top: 80px;
    }

    .testimonials-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        height: 300px;
    }

    .testimonial-nav-btn {
        width: 50px;
        height: 50px;
    }

    .testimonial-prev-btn {
        left: 15px;
    }

    .testimonial-next-btn {
        right: 15px;
    }

    .testimonial-indicators {
        gap: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        margin-top: 60px;
    }

    .testimonials-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .testimonial-card {
        height: 280px;
        margin: 0 10px;
    }

    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
    }

    .testimonial-prev-btn {
        left: 10px;
    }

    .testimonial-next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        margin-top: 50px;
    }

    .testimonials-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .testimonial-card {
        height: 250px;
        margin: 0 5px;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
    }

    .testimonial-prev-btn {
        left: 8px;
    }

    .testimonial-next-btn {
        right: 8px;
    }

    .testimonial-indicators {
        gap: 8px;
        flex-wrap: wrap;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 360px) {
    .testimonials-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .testimonial-card {
        height: 220px;
    }

    .testimonial-nav-btn {
        width: 35px;
        height: 35px;
    }

    .testimonial-prev-btn {
        left: 5px;
    }

    .testimonial-next-btn {
        right: 5px;
    }
}

/* Organizer Section */
.organizer-section {
    margin-bottom: 20px;
}

.organizer-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    margin-bottom: 50px;
    text-align: center;
}

.organizer-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.04em;
    color: #2F2D2E;
    margin-bottom: 50px;
    max-width: 800px;
}

.organizer-profile {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    height: auto;
}

.organizer-photo {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 124, 92, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.organizer-photo:hover {
    border-color: rgba(255, 124, 92, 0.5);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 124, 92, 0.2);
}

.organizer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.organizer-photo:hover .organizer-image {
    transform: scale(1.05);
}

.organizer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.organizer-main-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #2F2D2E;
    margin: 0;
    background: linear-gradient(135deg, #FF7C5C, #AE8EBA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.organizer-achievement {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #2F2D2E;
    margin: 0;
    padding: 15px 20px;
    background-color: rgba(255, 124, 92, 0.1);
    border-left: 4px solid #FF7C5C;
    border-radius: 0 8px 8px 0;
}

.organizer-card-container {
    background: linear-gradient(135deg, #FF7C5C 0%, #FFB3A7 48%, #AE8EBA 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
    overflow: hidden;
    opacity: 0.9;
}

.organizer-card-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 124, 92, 0.2) 0%,
        rgba(255, 179, 167, 0.3) 25%,
        rgba(174, 142, 186, 0.2) 50%,
        rgba(255, 179, 167, 0.3) 75%,
        rgba(255, 124, 92, 0.2) 100%);
    border-radius: 10px;
    animation: gentleShimmer 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gentleShimmer {
    0% {
        opacity: 0.2;
        transform: translateX(-5px) scale(1);
    }
    25% {
        opacity: 0.4;
        transform: translateX(2px) scale(1.02);
    }
    50% {
        opacity: 0.3;
        transform: translateX(5px) scale(1);
    }
    75% {
        opacity: 0.4;
        transform: translateX(2px) scale(1.02);
    }
    100% {
        opacity: 0.2;
        transform: translateX(-5px) scale(1);
    }
}

.organizer-card {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.organizer-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    text-align: center;
    margin-bottom: 50px;
}

.organizer-achievements {
    width: 100%;
}

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

.achievements-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.achievements-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    margin-bottom: 10px;
    padding-left: 5px;
}

/* Organizer Section Responsive */
@media (max-width: 1440px) {
    .organizer-title {
        font-size: 44px;
    }

    .organizer-description {
        font-size: 22px;
    }

    .organizer-name {
        font-size: 38px;
    }

    .organizer-photo {
        width: 180px;
        height: 180px;
    }

    .organizer-main-description {
        font-size: 26px;
    }

    .organizer-achievement {
        font-size: 20px;
    }

    .achievements-list li {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .organizer-title {
        font-size: 40px;
    }

    .organizer-description {
        font-size: 20px;
    }

    .organizer-name {
        font-size: 34px;
    }

    .achievements-list li {
        font-size: 17px;
    }
}

@media (max-width: 1000px) {
    .organizer-section {
        margin-top: 100px;
    }

    .organizer-title {
        font-size: 36px;
    }

    .organizer-description {
        font-size: 18px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .organizer-profile {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        margin-bottom: 0px;
    }

    .organizer-photo {
        width: 160px;
        height: 160px;
    }

    .organizer-main-description {
        font-size: 24px;
    }

    .organizer-achievement {
        font-size: 18px;
        padding: 12px 15px;
    }

    .organizer-card-container {
        padding: 30px;
    }

    .organizer-card {
        padding: 30px;
    }

    .organizer-name {
        font-size: 30px;
    }

    .achievements-list li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .organizer-section {
        margin-top: 80px;
    }

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

    .organizer-description {
        font-size: 16px;
    }

    .organizer-card-container {
        padding: 25px;
    }

    .organizer-card {
        padding: 25px;
    }

    .organizer-name {
        font-size: 28px;
    }

    .achievements-list li {
        font-size: 15px;
        padding-left: 18px;
    }
}

@media (max-width: 600px) {
    .organizer-section {
        margin-top: 60px;
    }

    .organizer-title {
        font-size: 28px;
    }

    .organizer-description {
        font-size: 15px;
    }

    .organizer-profile {
        gap: 20px;
        margin-bottom: 30px;
    }

    .organizer-photo {
        width: 140px;
        height: 140px;
    }

    .organizer-main-description {
        font-size: 22px;
    }

    .organizer-achievement {
        font-size: 16px;
        padding: 10px 12px;
    }

    .organizer-card-container {
        padding: 20px;
    }

    .organizer-card {
        padding: 20px;
    }

    .organizer-name {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .achievements-list li {
        font-size: 14px;
        padding-left: 15px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .organizer-section {
        margin-top: 50px;
    }

    .organizer-title {
        font-size: 24px;
    }

    .organizer-description {
        font-size: 14px;
    }

    .organizer-profile {
        gap: 18px;
        margin-bottom: 25px;
    }

    .organizer-photo {
        width: 120px;
        height: 120px;
    }

    .organizer-main-description {
        font-size: 20px;
    }

    .organizer-achievement {
        font-size: 14px;
        padding: 8px 10px;
    }

    .organizer-card-container {
        padding: 15px;
    }

    .organizer-card {
        padding: 18px;
    }

    .organizer-name {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .achievements-list li {
        font-size: 13px;
        padding-left: 12px;
        gap: 10px;
    }
}

@media (max-width: 360px) {
    .organizer-title {
        font-size: 22px;
    }

    .organizer-description {
        font-size: 13px;
    }

    .organizer-profile {
        gap: 15px;
        margin-bottom: 20px;
    }

    .organizer-photo {
        width: 100px;
        height: 100px;
    }

    .organizer-main-description {
        font-size: 18px;
    }

    .organizer-achievement {
        font-size: 12px;
        padding: 6px 8px;
    }

    .organizer-card-container {
        padding: 12px;
    }

    .organizer-card {
        padding: 15px;
    }

    .organizer-name {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .achievements-list li {
        font-size: 12px;
        padding-left: 10px;
        gap: 8px;
    }
}


@media (max-width: 870px) {
        .advantage-card{
            min-width: 190px;
        }
        .card-text{
            max-width: 300px;
        }
}

@media (max-width: 650px) {
    .card-number{
        font-size: 36px;
    }
    .network-icon{
        width: 30px;
        height: auto;
    }
}

@media (max-width: 550px) {
        .advantage-card{
            height: 150px;
        }
}

@media (max-width: 450px) {
        .advantage-card{
            height: 125px;
        }
}

.name_2{
    color: #2F2D2E;
}

.price-title{
    max-width: 1380px;
    margin: 0 auto;
    margin-top: 100px;
    padding: 0px 20px;
    text-align: center;
    line-height: 125%;
}

.h2-title-price {
    margin-top: 20px;
    font-size: 32px;
    background: linear-gradient(90deg, #7c3aed 0%, #b23e7a 50%, #d86834 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.platunum-btn{
    background-image: url('img/bg-mascot-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.platinu-tariff{
    background-color: #FF7C5C;
    border: none;
}

/* Registration Page Styles */
.registration-main {
    margin-top: 100px;
    margin-bottom: 50px;
}

.registration-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.registration-header {
    margin-bottom: 50px;
}

.registration-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF7C5C, #AE8EBA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registration-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    margin: 0;
}

.registration-form-container {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    padding: 40px;
    margin-bottom: 80px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.registration-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 124, 92, 0.05) 0%,
        rgba(174, 142, 186, 0.05) 50%,
        rgba(255, 179, 167, 0.05) 100%);
    border-radius: 15px;
    pointer-events: none;
}

.registration-benefits {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    padding: 40px;
    margin-bottom: 30px;
}

.registration-benefits h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FF7C5C, #AE8EBA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.benefits-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-left: 4px solid #FF7C5C;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.benefits-list li:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Registration Page Responsive */
@media (max-width: 1440px) {
    .registration-title {
        font-size: 44px;
    }

    .registration-subtitle {
        font-size: 22px;
    }

    .registration-form-container {
        padding: 35px;
    }

    .registration-benefits {
        padding: 35px;
    }

    .registration-benefits h3 {
        font-size: 30px;
    }

    .benefits-list li {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .registration-title {
        font-size: 40px;
    }

    .registration-subtitle {
        font-size: 20px;
    }

    .registration-form-container {
        padding: 30px;
    }

    .registration-benefits {
        padding: 30px;
    }

    .registration-benefits h3 {
        font-size: 28px;
    }

    .benefits-list li {
        font-size: 17px;
    }
}

@media (max-width: 1000px) {
    .registration-main {
        margin-top: 80px;
    }

    .registration-title {
        font-size: 36px;
    }

    .registration-subtitle {
        font-size: 18px;
    }

    .registration-form-container {
        padding: 25px;
        margin-bottom: 40px;
    }

    .registration-benefits {
        padding: 25px;
        margin-bottom: 25px;
    }

    .registration-benefits h3 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .benefits-list li {
        font-size: 16px;
        padding: 12px 15px;
    }
}

@media (max-width: 768px) {
    .registration-main {
        margin-top: 60px;
    }

    .registration-container {
        padding: 0 15px;
    }

    .registration-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

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

    .registration-form-container {
        padding: 20px;
        margin-bottom: 30px;
    }

    .registration-benefits {
        padding: 20px;
        margin-bottom: 20px;
    }

    .registration-benefits h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .benefits-list li {
        font-size: 15px;
        padding: 10px 12px;
    }
}

@media (max-width: 600px) {
    .registration-main {
        margin-top: 50px;
    }

    .registration-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .registration-subtitle {
        font-size: 15px;
    }

    .registration-form-container {
        padding: 18px;
        margin-bottom: 25px;
    }

    .registration-benefits {
        padding: 18px;
        margin-bottom: 18px;
    }

    .registration-benefits h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .benefits-list li {
        font-size: 14px;
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .registration-main {
        margin-top: 40px;
    }

    .registration-container {
        padding: 0 10px;
    }

    .registration-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

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

    .registration-form-container {
        padding: 15px;
        margin-bottom: 20px;
    }

    .registration-benefits {
        padding: 15px;
        margin-bottom: 15px;
    }

    .registration-benefits h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .benefits-list li {
        font-size: 13px;
        padding: 6px 8px;
    }
}

@media (max-width: 360px) {
    .registration-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .registration-subtitle {
        font-size: 13px;
    }

    .registration-form-container {
        padding: 12px;
        margin-bottom: 15px;
    }

    .registration-benefits {
        padding: 12px;
        margin-bottom: 12px;
    }

    .registration-benefits h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .benefits-list li {
        font-size: 12px;
        padding: 5px 6px;
    }
}

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