* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.6; color: #333; } .hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; color: white; text-align: center; } .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; } .hero p { font-size: 1.3rem; opacity: 0.9; margin-bottom: 2rem; max-width: 600px; } .btn { display: inline-block; padding: 1rem 2.5rem; background: white; color: #764ba2; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.1rem; transition: transform 0.2s, box-shadow 0.2s; } .btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); } .btn-primary { background: #764ba2; color: white; } .offer-banner { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); color: white; text-align: center; padding: 1rem; font-size: 1.1rem; font-weight: bold; } nav { position: fixed; top: 0; width: 100%; background: rgba(118, 75, 162, 0.95); padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; z-index: 100; } nav a { color: white; text-decoration: none; margin-left: 1.5rem; } nav .logo { font-size: 1.5rem; font-weight: bold; } section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; } .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: #333; } .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .card { background: white; border-radius: 12px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.2s; text-align: center; } .card:hover { transform: translateY(-5px); } .card h3 { color: #764ba2; margin-bottom: 1rem; font-size: 1.3rem; } .card p { color: #666; } .card .icon { font-size: 2.5rem; margin-bottom: 1rem; } .card .price { font-size: 2rem; font-weight: bold; color: #764ba2; margin: 1rem 0; } .card .old-price { text-decoration: line-through; color: #999; font-size: 1.2rem; } .card .discount { background: #f5576c; color: white; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: bold; display: inline-block; margin-bottom: 0.5rem; } #about { background: #f8f9fa; } .about-content { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; } .about-text { flex: 1; min-width: 300px; } .about-text h2 { color: #333; margin-bottom: 1rem; } .about-text p { color: #666; margin-bottom: 1rem; } footer { background: #333; color: white; text-align: center; padding: 2rem; } footer a { color: #a78bfa; }