
      
    


      
     


      {} *{} /*endBaseStyles*/
     


      #IE-warning {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: white;
      }
      .IE-warning-message {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
      }
    



 * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Header */ .header { background: rgba(255, 255, 255, 0.95); padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); } .logo { font-size: 28px; font-weight: bold; color: #4a5568; text-align: center; } /* Hero Section */ .hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 80px 0; text-align: center; } .hero h1 { font-size: 3.5rem; font-weight: bold; margin-bottom: 20px; line-height: 1.2; } .hero .sub-headline { font-size: 1.3rem; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; opacity: 0.95; } .cta-button { display: inline-block; background: #ff6b6b; color: white; padding: 20px 40px; font-size: 1.2rem; font-weight: bold; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3); } .cta-button:hover { background: #ff5252; transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4); } /* Content Sections */ .section { padding: 80px 0; } .section-white { background: white; } .section-gray { background: #f8f9fa; } .section h2 { font-size: 2.5rem; margin-bottom: 30px; text-align: center; color: #2d3748; } .section p { font-size: 1.1rem; margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; text-align: center; } /* Problem Section */ .problem-list { max-width: 600px; margin: 40px auto; text-align: left; } .problem-item { background: #fff5f5; border-left: 4px solid #ff6b6b; padding: 20px; margin-bottom: 15px; border-radius: 8px; } .problem-item h3 { color: #c53030; margin-bottom: 10px; } /* Benefits Section */ .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; } .benefit-card { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; transition: transform 0.3s ease; } .benefit-card:hover { transform: translateY(-10px); } .benefit-icon { width: 60px; height: 60px; 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: 24px; color: white; } .benefit-card h3 { color: #2d3748; margin-bottom: 15px; } /* How It Works */ .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 50px; } .step { text-align: center; } .step-number { width: 80px; height: 80px; background: #ff6b6b; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: bold; margin: 0 auto 20px; } /* Testimonials */ .testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; } .testimonial { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; } .testimonial::before { content: '"'; font-size: 4rem; color: #667eea; position: absolute; top: -10px; left: 20px; } .testimonial-text { font-style: italic; margin-bottom: 20px; padding-top: 20px; } .testimonial-author { font-weight: bold; color: #667eea; } /* Guarantee Section */ .guarantee { background: linear-gradient(135deg, #48bb78 0%, #38a169 100%); color: white; text-align: center; padding: 60px 0; } .guarantee-badge { width: 100px; height: 100px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; font-size: 2rem; } /* Footer */ .footer { background: #2d3748; color: white; padding: 40px 0; text-align: center; } .disclaimer { font-size: 0.9rem; opacity: 0.8; max-width: 800px; margin: 0 auto; line-height: 1.5; } /* Responsive Design */ @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .hero .sub-headline { font-size: 1.1rem; } .section h2 { font-size: 2rem; } .cta-button { padding: 15px 30px; font-size: 1.1rem; } } /* Animation */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .fade-in { animation: fadeInUp 0.8s ease-out; } 

