 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, sans-serif;
        }
        
        :root {
            --primary: #2563eb;
            --secondary: #1e293b;
            --light: #ffffff;
            --gray: #64748b;
            --dark-bg: #0f172a;
        }
        
        body {
            background: #f1f5f9;
        }
        
        /* ===== NAVBAR STYLES ===== */
        .navbar {
            background: #FD1D1D;
            background: linear-gradient(257deg,rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 9999;
            width: 100%;
        }
        
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 75px;
        }
        
        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .logo i {
            font-size: 2rem;
        }
        
        .logo span {
            background: white;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* Navigation Menu */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 10px;
            list-style: none;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            display: block;
            padding: 10px 18px;
            text-decoration: none;
            color: black;
            font-weight: 500;
            font-size: 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .nav-link i {
            margin-right: 6px;
            font-size: 0.9rem;
        }
        
        .nav-link:hover {
            background: linear-gradient(257deg,rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
            color: white;
        }
        
        
        
        /* Hamburger Menu Button */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 22px;
            cursor: pointer;
            z-index: 10000;
        }
        
        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        /* Mobile Menu Overlay */
        .mobile-overlay {
            display: none;
            position: fixed;
            top: 75px;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 9998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mobile-overlay.active {
            opacity: 1;
        }
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media screen and (max-width: 1024px) {
            .search-box input {
                width: 140px;
            }
        }
        
        @media screen and (max-width: 968px) {
            .hamburger {
                display: flex;
            }
            .nav-link.active {
            background: linear-gradient(257deg,rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
            color: black;
        }
            .mobile-overlay {
                display: block;
                pointer-events: none;
            }
            
            .mobile-overlay.active {
                pointer-events: auto;
            }
            
            .nav-menu {
                position: fixed;
                top: 75px;
                right: -100%;
                width: 300px;
                height: calc(100vh - 75px);
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 30px 20px;
                gap: 15px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                overflow-y: auto;
                z-index: 9999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-item {
                width: 100%;
            }
            
            .nav-link {
                width: 100%;
                padding: 12px 15px;
            }
            
            
            /* Hamburger Animation */
            .hamburger.active span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }
        }
        
        @media screen and (max-width: 480px) {
            .nav-container {
                padding: 0 15px;
            }
            .nav-link.active {
            background: linear-gradient(257deg,rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
            color: black;
        }
            .logo {
                font-size: 1.4rem;
            }
            
            .nav-menu {
                width: 100%;
            }
        }
        
        /* Demo Content */
        .demo-content {
            max-width: 1300px;
            margin: 50px auto;
            padding: 20px;
        }

.header {
    background: var(--light);
    padding: 60px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.header-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1rem;
}

.header-content strong {
    color: #4c4c4c;
}

.header-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline {
    background: #FD1D1D;
    color: #Fff;
    border: 2px solid #FD1D1D;
}


.btn-primary {
    background: #FD1D1D;
    color: #fff;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .header {
        padding: 40px 15px;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .header-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .header-buttons {
        flex-direction: column;
    }
}

.image-section {
    padding: 0px 0;
    background: var(--light);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.responsive-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* CSS */
.about-section {
    padding: 60px 0;
    background: var(--light);
}

.about-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #FD1D1D;;
    border-radius: 2px;
}

.about-section p {
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 1rem;
}

.about-section strong {
    color: #4c4c4c;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-section h2 {
        font-size: 1.6rem;
    }
    
    .about-section p {
        font-size: 0.95rem;
    }
}
/* CSS */
.info-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.info-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-section h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
}

.table-wrapper {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.info-table tr:last-child {
    border-bottom: none;
}

.table-label {
    padding: 18px 25px;
    font-weight: 700;
    color: var(--secondary);
    background: #f8fafc;
    width: 40%;
    font-size: 1rem;
}

.table-value {
    padding: 18px 25px;
    color: var(--gray);
    font-weight: 500;
    font-size: 1rem;
}

.table-value:last-child {
    word-break: break-all;
}

@media (max-width: 600px) {
    .info-section h2 {
        font-size: 1.6rem;
    }
    
    .table-label,
    .table-value {
        padding: 14px 15px;
        font-size: 0.9rem;
    }
}
/* CSS */
.info-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.info-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-section h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
}

.table-wrapper {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.info-table tr:last-child {
    border-bottom: none;
}

.table-label {
    padding: 18px 25px;
    font-weight: 700;
    color: var(--secondary);
    background: #f8fafc;
    width: 40%;
    font-size: 1rem;
}

.table-value {
    padding: 18px 25px;
    color: var(--gray);
    font-weight: 500;
    font-size: 1rem;
}

.table-value:last-child {
    word-break: break-all;
}

@media (max-width: 600px) {
    .info-section h2 {
        font-size: 1.6rem;
    }
    
    .table-label,
    .table-value {
        padding: 14px 15px;
        font-size: 0.9rem;
    }
}
/* CSS */
.guide-section {
    padding: 60px 0;
    background: var(--light);
}

.guide-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.guide-block {
    margin-bottom: 50px;
}

.guide-block:last-child {
    margin-bottom: 0;
}

.guide-block h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.guide-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FD1D1D;
    border-radius: 2px;
}

.guide-block p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1rem;
}

.guide-block strong {
    color: #4c4c4c;
    font-weight: 600;
}

.steps-list {
    margin: 20px 0 20px 20px;
}

.steps-list li {
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 1rem;
    padding-left: 8px;
}

.steps-list li::marker {
    color: #252525;
    font-weight: 700;
}

.steps-list li strong {
    color: #4c4c4c;
}

@media (max-width: 768px) {
    .guide-section {
        padding: 40px 0;
    }
    
    .guide-block h2 {
        font-size: 1.5rem;
    }
    
    .guide-block p,
    .steps-list li {
        font-size: 0.95rem;
    }
    
    .steps-list {
        margin-left: 15px;
    }
}
/* CSS */
.three-images-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.three-images-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
}

.grid-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .images-grid {
        grid-template-columns: 1fr;
    }
}
/* CSS */
.features-section {
    padding: 60px 0;
    background: var(--light);
}

.features-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-block {
    margin-bottom: 50px;
}

.features-block:last-child {
    margin-bottom: 0;
}

.features-block h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.features-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FD1D1D;;
    border-radius: 2px;
}

.features-block p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1rem;
}

.features-block strong {
    color: #4c4c4c;
    font-weight: 600;
}

.features-list,
.bonus-list {
    margin: 20px 0 20px 20px;
}

.features-list li,
.bonus-list li {
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 1rem;
    padding-left: 8px;
}

.features-list li::marker,
.bonus-list li::marker {
    color: #000;
    font-weight: 700;
}

.features-list li strong,
.bonus-list li strong {
    color: #4c4c4c;
}

.tips-list {
    margin: 20px 0 20px 20px;
}

.tips-list li {
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 1rem;
    padding-left: 8px;
}

.tips-list li::marker {
    color: #000;
    font-weight: 700;
}

@media (max-width: 768px) {
    .features-section {
        padding: 40px 0;
    }
    
    .features-block h2 {
        font-size: 1.5rem;
    }
    
    .features-block p,
    .features-list li,
    .tips-list li,
    .bonus-list li {
        font-size: 0.95rem;
    }
    
    .features-list,
    .tips-list,
    .bonus-list {
        margin-left: 15px;
    }
}

/* CSS */
.faq-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FD1D1D;;
    border-radius: 2px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.2rem;
    color: var(--secondary);
    background: var(--light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #4c4c4c;
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 20px 25px;
    display: none;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

.faq-answer strong {
    color: #4c4c4c;
}

.faq-item.active .faq-question {
    color: #4c4c4c;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px 18px 20px;
    }
}
/* CSS - FAQ Answers Always Open */
.faq-answer {
    padding: 0 25px 20px 25px;
    display: block !important;
}

.faq-question {
    cursor: default;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question::after {
    display: none;
}
/* CSS */
.disclaimer-section {
    padding: 50px 0;
    background: var(--gray-light);
}

.disclaimer-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.disclaimer-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 25px 30px;
}

.disclaimer-box p {
    color: #78350f;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.disclaimer-box strong {
    color: #92400e;
    font-weight: 700;
}

@media (max-width: 768px) {
    .disclaimer-section {
        padding: 30px 0;
    }
    
    .disclaimer-box {
        padding: 20px;
    }
    
    .disclaimer-box p {
        font-size: 0.9rem;
    }
}

/* CSS */
.footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 20px;
}

.footer .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
}
/* CSS */
.telegram-section {
    padding: 50px 0;
    background: var(--light);
}

.telegram-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.telegram-box {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 20px 35px -8px rgba(0, 136, 204, 0.3);
}

.telegram-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.telegram-icon i {
    font-size: 36px;
    color: #0088cc;
}

.telegram-content {
    flex: 1;
}

.telegram-content h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.telegram-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.telegram-btn {
    background: white;
    color: #0088cc;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.telegram-btn i {
    font-size: 1.2rem;
}

@media (max-width: 700px) {
    .telegram-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .telegram-icon {
        width: 60px;
        height: 60px;
    }
    
    .telegram-icon i {
        font-size: 30px;
    }
    
    .telegram-content h3 {
        font-size: 1.4rem;
    }
    
    .telegram-btn {
        width: 100%;
        justify-content: center;
    }
}

/* CSS - Key Features Section */
.key-features-section {
    padding: 70px 0;
    background: var(--light);
}

.key-features-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.key-features-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 45px;
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.key-feature-card {
    background: var(--gray-light);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.key-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: white;
}

.key-feature-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.key-feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
    .key-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .key-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .key-features-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .key-features-grid {
        grid-template-columns: 1fr;
    }
    
    .key-feature-card {
        padding: 25px 20px;
    }
}


