/* Global Styles */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; } body { background-color: #f7f7f7; color: #333; line-height: 1.6; font-size: 16px; } .container { width: 80%; max-width: 1200px; margin: 0 auto; } /* Header Section */ header { background-color: #1c1c1c; color: white; text-align: center; padding: 50px 0; } header h1 { font-size: 36px; margin-bottom: 20px; } header p { font-size: 20px; margin-bottom: 30px; } .cta-button { background-color: #ff7f50; color: white; text-decoration: none; padding: 15px 30px; border-radius: 5px; font-size: 18px; transition: background-color 0.3s; } .cta-button:hover { background-color: #ff5722; } /* Features Section */ .features { background-color: #fff; padding: 60px 0; } .features h2 { text-align: center; font-size: 32px; margin-bottom: 40px; } .feature-list { display: flex; flex-wrap: wrap; justify-content: space-between; } .feature-item { width: 30%; margin-bottom: 30px; background-color: #f4f4f4; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .feature-item h3 { font-size: 24px; margin-bottom: 15px; } .feature-item p { font-size: 16px; color: #555; } /* Call-to-Action Section */ .cta-section { background-color: #ff7f50; color: white; text-align: center; padding: 50px 0; } .cta-section h2 { font-size: 32px; margin-bottom: 20px; } .cta-section p { font-size: 20px; margin-bottom: 30px; } /* Footer Section */ footer { background-color: #333; color: white; text-align: center; padding: 20px; margin-top: 40px; }