body { margin: 0; font-family: 'Segoe UI', sans-serif; background-color: #f0f0f0; color: #333; } header { background-color: #2d2d2d; color: white; padding: 1em 0; } .container { width: 90%; max-width: 1000px; margin: auto; } nav { margin-top: 10px; } nav a { margin-right: 15px; text-decoration: none; color: #fff; font-size: 1.2em; transition: all 0.3s ease; } nav a:hover { color: #2ecc71; } .hero { background-image: url('https://wallpapercave.com/wp/wp4903915.jpg'); background-size: cover; color: white; padding: 5em 0; text-align: center; position: relative; } .hero .btn { background-color: #2ecc71; padding: 12px 30px; color: white; text-decoration: none; border-radius: 8px; font-size: 1.2em; transition: background-color 0.3s ease; } .hero .btn:hover { background-color: #27ae60; } .hero-img { position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%); width: 200px; animation: bounce 1s infinite; } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } } .info-section { padding: 3em 0; text-align: center; } .alt-bg { background-color: #e8e8e8; } ul li { margin: 10px 0; font-size: 1.2em; } .why-img, .benefits-img { width: 100%; height: auto; border-radius: 8px; margin-top: 20px; } .socials { margin-top: 20px; } .social-icon { width: 40px; margin-right: 15px; transition: transform 0.3s ease; } .social-icon:hover { transform: scale(1.2); } footer { text-align: center; background-color: #2d2d2d; color: white; padding: 1em 0; font-size: 0.9em; } footer a { color: #fff; text-decoration: none; } footer a:hover { text-decoration: underline; }