
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background: #f4f4f4;
        }
        
        .wrp-main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nav-top {
            background: #1a1a2e;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .nav-cont {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .brand-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #fff;
        }
        
        .logo-img {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 24px;
            margin-right: 15px;
        }
        
        .brand-txt {
            font-size: 24px;
            font-weight: 700;
        }
        
        .act-btns {
            display: flex;
            gap: 15px;
        }
        
        .btn-prim, .btn-sec {
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-prim {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
        }
        
        .btn-prim:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }
        
        .btn-sec {
            background: transparent;
            color: white;
            border: 2px solid #667eea;
        }
        
        .btn-sec:hover {
            background: #667eea;
        }
        
        .hero-sec {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 80px 0;
            color: white;
        }
        
        .hero-cont {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .hero-txt h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-txt p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .feat-list {
            list-style: none;
            margin-bottom: 40px;
        }
        
        .feat-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .feat-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
            font-size: 20px;
        }
        
        .hero-img {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .bonus-box {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(10px);
        }
        
        .bonus-box h3 {
            font-size: 28px;
            margin-bottom: 15px;
        }
        
        .bonus-box .bonus-amt {
            font-size: 48px;
            font-weight: bold;
            color: #ffd700;
            margin-bottom: 10px;
        }
        
        .cont-sec {
            padding: 60px 0;
            background: white;
        }
        
        .sec-title {
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
            color: #1a1a2e;
        }
        
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .card-item {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .card-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: white;
        }
        
        .card-item h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #1a1a2e;
        }
        
        .card-item p {
            color: #7f8c8d;
            line-height: 1.8;
        }
        
        .steps-sec {
            background: #f8f9fa;
            padding: 60px 0;
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .step-box {
            text-align: center;
            position: relative;
        }
        
        .step-num {
            width: 60px;
            height: 60px;
            background: #667eea;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .step-box h4 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #1a1a2e;
        }
        
        .cta-sec {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-sec h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .cta-sec p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .btn-big {
            padding: 20px 50px;
            font-size: 20px;
            background: white;
            color: #667eea;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .btn-big:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .faq-sec {
            padding: 60px 0;
            background: white;
        }
        
        .faq-item {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
        }
        
        .faq-item h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #1a1a2e;
        }
        
        .faq-item p {
            color: #7f8c8d;
            line-height: 1.8;
        }
        
        .ft-area {
            background: #1a1a2e;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .ft-cont {
            margin-bottom: 30px;
        }
        
        .ft-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .ft-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        
        .ft-links a:hover {
            opacity: 1;
        }
        
        .seo-txt {
            padding: 40px 0;
            background: #f8f9fa;
            color: #7f8c8d;
            font-size: 14px;
            line-height: 1.8;
        }
        
        @media (max-width: 768px) {
            .hero-cont {
                grid-template-columns: 1fr;
            }
            
            .hero-txt h1 {
                font-size: 36px;
            }
            
            .act-btns {
                flex-direction: column;
                width: 100%;
            }
            
            .btn-prim, .btn-sec {
                width: 100%;
                text-align: center;
            }
            
            .nav-cont {
                flex-direction: column;
                gap: 20px;
            }
        }
