 {} *{} #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%); min-height: 100vh; } .container { max-width: 800px; margin: 0 auto; padding: 20px; background: white; margin-top: 40px; margin-bottom: 40px; border-radius: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); } .header { text-align: center; margin-bottom: 40px; padding: 30px 20px; } .headline { font-size: 2.5rem; font-weight: bold; color: #2c3e50; margin-bottom: 15px; line-height: 1.2; } .subheadline { font-size: 1.3rem; color: #7f8c8d; margin-bottom: 30px; font-weight: 300; } .benefits { margin: 40px 0; } .benefit-item { background: #f8f9fa; padding: 25px; margin-bottom: 20px; border-radius: 10px; border-left: 5px solid #3498db; transition: transform 0.3s ease, box-shadow 0.3s ease; } .benefit-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); } .benefit-title { font-size: 1.4rem; font-weight: bold; color: #2c3e50; margin-bottom: 10px; } .benefit-description { color: #555; font-size: 1.1rem; line-height: 1.6; } .cta-section { text-align: center; margin: 50px 0; padding: 40px 20px; background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%); border-radius: 15px; color: white; } .cta-text { font-size: 1.5rem; margin-bottom: 25px; font-weight: 600; } .cta-button { display: inline-block; background: #fff; color: #ee5a24; padding: 18px 40px; font-size: 1.3rem; font-weight: bold; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 8px 20px rgba(0,0,0,0.2); text-transform: uppercase; letter-spacing: 1px; } .cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); background: #f1f2f6; } .urgency { background: #fff3cd; border: 1px solid #ffeaa7; padding: 20px; border-radius: 10px; text-align: center; margin: 30px 0; color: #856404; font-weight: 600; } .footer { text-align: center; padding: 20px; color: #7f8c8d; font-size: 0.9rem; } /* Mobile Responsive */ @media (max-width: 768px) { .container { margin: 20px; padding: 15px; } .headline { font-size: 2rem; } .subheadline { font-size: 1.1rem; } .benefit-item { padding: 20px; } .benefit-title { font-size: 1.2rem; } .benefit-description { font-size: 1rem; } .cta-button { padding: 15px 30px; font-size: 1.1rem; } .cta-text { font-size: 1.3rem; } } @media (max-width: 480px) { .headline { font-size: 1.7rem; } .subheadline { font-size: 1rem; } .cta-button { padding: 12px 25px; font-size: 1rem; } } /* Animation */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .container { animation: fadeInUp 0.8s ease-out; } .benefit-item { animation: fadeInUp 0.6s ease-out; } .benefit-item:nth-child(1) { animation-delay: 0.1s; } .benefit-item:nth-child(2) { animation-delay: 0.2s; } .benefit-item:nth-child(3) { animation-delay: 0.3s; }
