
      
    


      
     


      {} *{} /*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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); min-height: 100vh; padding: 20px; } .container { max-width: 800px; margin: 0 auto; background: white; border-radius: 12px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); overflow: hidden; } /* Header Section */ .header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 60px 40px; text-align: center; } .header h1 { font-size: 2.5em; margin-bottom: 15px; font-weight: 700; line-height: 1.2; } .header p { font-size: 1.3em; margin-bottom: 10px; font-weight: 300; opacity: 0.95; } .header .subheading { font-size: 1.1em; margin-top: 20px; opacity: 0.9; font-style: italic; } /* Main Content */ .content { padding: 50px 40px; } /* Problem Section */ .section { margin-bottom: 50px; } .section h2 { font-size: 1.8em; color: #667eea; margin-bottom: 25px; font-weight: 700; } .section p { font-size: 1.05em; margin-bottom: 15px; color: #555; line-height: 1.8; } .problem-list { list-style: none; margin: 20px 0; } .problem-list li { font-size: 1.05em; margin-bottom: 15px; padding-left: 30px; position: relative; color: #555; } .problem-list li:before { content: "✗"; position: absolute; left: 0; color: #e74c3c; font-weight: bold; font-size: 1.3em; } /* Solution Section */ .solution-highlight { background: #f0f4ff; border-left: 5px solid #667eea; padding: 20px; margin: 25px 0; border-radius: 5px; } .solution-highlight strong { color: #667eea; font-size: 1.1em; } /* Benefits Table */ .benefits-table { width: 100%; margin: 30px 0; border-collapse: collapse; font-size: 1em; } .benefits-table th { background: #667eea; color: white; padding: 15px; text-align: left; font-weight: 700; } .benefits-table td { padding: 15px; border-bottom: 1px solid #e0e0e0; } .benefits-table tr:nth-child(even) { background: #f9f9f9; } .benefits-table tr:hover { background: #f0f4ff; } /* CTA Buttons */ .cta-section { text-align: center; margin: 40px 0; } .cta-button { display: inline-block; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 18px 50px; font-size: 1.1em; font-weight: 700; text-decoration: none; border-radius: 50px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4); margin: 15px 10px; border: none; cursor: pointer; display: inline-block; } .cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6); } .cta-button:active { transform: translateY(-1px); } /* Credibility Section */ .credibility { background: #fff3cd; border: 1px solid #ffc107; padding: 25px; border-radius: 8px; margin: 30px 0; } .credibility h3 { color: #856404; margin-bottom: 15px; font-size: 1.2em; } .credibility p { color: #856404; font-size: 1em; line-height: 1.8; } /* Footer CTA */ .footer-cta { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 40px; text-align: center; } .footer-cta h3 { font-size: 1.5em; margin-bottom: 20px; font-weight: 700; } .footer-cta p { font-size: 1em; margin-bottom: 25px; opacity: 0.95; } /* Responsive Design */ @media (max-width: 768px) { .header h1 { font-size: 1.8em; } .header p { font-size: 1.1em; } .section h2 { font-size: 1.5em; } .content { padding: 30px 20px; } .header { padding: 40px 20px; } .cta-button { padding: 15px 40px; font-size: 1em; } .benefits-table { font-size: 0.9em; } .benefits-table th, .benefits-table td { padding: 10px; } } 

