* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Roboto', sans-serif; background-color: #f4f4f4; color: #333; } .container { width: 80%; margin: 0 auto; } .header { background: linear-gradient(135deg, #34495e, #2c3e50); color: white; padding: 80px 0; text-align: center; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } .header .heading { font-size: 36px; font-weight: 700; margin-bottom: 20px; } .header .subheading { font-size: 18px; font-weight: 400; } .section-1, .section-2, .cta { padding: 40px 0; text-align: center; } .section-heading { font-size: 28px; font-weight: 700; margin-bottom: 20px; } .features { list-style: none; padding: 0; margin-top: 30px; } .features li { font-size: 18px; margin-bottom: 10px; line-height: 1.6; } .cta { background-color: #3498db; color: white; padding: 50px 0; } .cta-button { background-color: #e74c3c; color: white; padding: 15px 30px; text-decoration: none; font-size: 18px; font-weight: 700; border-radius: 5px; transition: background-color 0.3s; } .cta-button:hover { background-color: #c0392b; } .footer { background-color: #2c3e50; color: white; padding: 20px 0; text-align: center; } .footer a { color: #ecf0f1; text-decoration: none; } .footer a:hover { text-decoration: underline; }