:root { --primary-color: #e63946; --secondary-color: #1d3557; --accent-color: #a8dadc; --bg-color: #f1faee; --text-color: #1d3557; --light-text: #f1faee; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: var(--text-color); background-color: var(--bg-color); } header { background: linear-gradient(135deg, var(--secondary-color) 0%, #457b9d 100%); color: var(--light-text); padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden; } .header-content { position: relative; z-index: 2; } header h1 { font-size: 3.5rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 2px; } header p { font-size: 1.25rem; opacity: 0.9; max-width: 800px; margin: 0 auto 2rem; } .cta-button { display: inline-block; background-color: var(--primary-color); color: white; padding: 1rem 2rem; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.2rem; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4); } .cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6); } section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; } .feature-card { background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s ease; } .feature-card:hover { transform: translateY(-10px); } .feature-card i { font-size: 3rem; color: var(--primary-color); margin-bottom: 1.5rem; } .feature-card h3 { margin-bottom: 1rem; color: var(--secondary-color); } .how-it-works { background-color: #fff; border-radius: 20px; padding: 3rem; margin-top: 2rem; } .step { display: flex; align-items: center; margin-bottom: 3rem; } .step:nth-child(even) { flex-direction: row-reverse; } .step-content { flex: 1; padding: 0 2rem; } .step-image { flex: 1; text-align: center; } .step-image img { max-width: 100%; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); } .step-number { background-color: var(--primary-color); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-bottom: 1rem; } .screenshots { background-color: var(--secondary-color); color: white; text-align: center; max-width: 100%; } .screenshots h2 { margin-bottom: 3rem; color: var(--accent-color); } .screenshot-container { display: flex; overflow-x: auto; gap: 2rem; padding: 2rem; scrollbar-width: thin; } .screenshot-container img { height: 500px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } footer { background-color: var(--secondary-color); color: white; padding: 3rem 2rem; text-align: center; } .footer-links { margin-bottom: 2rem; } .footer-links a { color: var(--accent-color); margin: 0 1rem; text-decoration: none; } @media (max-width: 768px) { .step { flex-direction: column !important; text-align: center; } .step-content { padding: 2rem 0; } header h1 { font-size: 2.5rem; } }