/**handles:main-style**/
body{font-family:Poppins,sans-serif;margin:0;padding:0;background:#f9fafb;color:#111827}header{background:#fff;padding:15px 30px;border-bottom:1px solid #ddd;display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:1000}header img{height:50px}header nav a{margin:0 15px;text-decoration:none;color:#111827;font-weight:600;transition:color .3s}header nav a:hover{color:#4f46e5}.hero{text-align:center;padding:60px 20px 40px;background:linear-gradient(135deg,#eef2ff,#dcd9ff);position:relative;overflow:hidden}.hero h1{font-size:48px;margin-bottom:20px}.hero p{font-size:20px;margin-bottom:25px;max-width:700px;margin-left:auto;margin-right:auto}.section{max-width:1200px;margin:60px auto;padding:20px;animation:fadeIn 1s ease}.section h2{font-size:36px;margin-bottom:20px;text-align:center}.cards-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:20px;margin-top:20px}.card{background:#fff;padding:35px;border-radius:15px;box-shadow:0 6px 20px rgba(0,0,0,.08);width:350px;display:flex;flex-direction:column;justify-content:space-between;transition:transform .3s ease,box-shadow .3s ease}.card:hover{transform:translateY(-10px);box-shadow:0 12px 24px rgba(79,70,229,.2)}.card img{width:100%;height:auto;border-radius:10px;margin-bottom:20px}.card h3{font-size:22px;margin-bottom:15px}.card p{flex-grow:1;font-size:18px;margin-bottom:20px}.card .button{width:auto;align-self:center;text-align:center;padding:12px 28px;background:#4f46e5;color:#fff;font-size:20px;border-radius:8px;transition:background .3s ease,transform .3s ease;box-shadow:0 4px 14px rgba(79,70,229,.5);margin-top:20px}.card .button:hover{background:#4338ca;transform:translateY(-4px)}footer{background:#fff;padding:30px 20px;text-align:center;font-size:14px;color:#aaa;border-top:1px solid #ddd;margin-top:60px}@keyframes fadeIn{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}