
body{
margin:0;
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
color:#222;
line-height:1.6;
background:#ffffff;
}

.hero{
height:80vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:40px;
background:linear-gradient(135deg,#ff7eb3,#7afcff,#feff9c,#fff);
background-size:400% 400%;
animation:gradient 15s ease infinite;
}

@keyframes gradient{
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}

.hero-inner{
max-width:800px;
}

.hero h1{
font-size:64px;
margin-bottom:10px;
}

.tagline{
font-size:24px;
font-weight:600;
}

.description{
margin-top:20px;
font-size:18px;
}

.buttons{
margin-top:30px;
}

.primary{
background:#111;
color:white;
padding:14px 26px;
border-radius:8px;
text-decoration:none;
margin-right:10px;
}

.secondary{
border:2px solid #111;
padding:12px 24px;
border-radius:8px;
text-decoration:none;
color:#111;
}

.section{
padding:80px 20px;
text-align:center;
}

.section h2{
font-size:36px;
margin-bottom:10px;
}

.section-intro{
max-width:700px;
margin:0 auto 40px auto;
}

.cards{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
}

.card{
max-width:300px;
padding:30px;
border-radius:14px;
background:white;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:left;
}

.card h3{
margin-top:0;
}

.alt{
background:#f7f9fc;
}

footer{
padding:40px;
text-align:center;
color:#777;
font-size:14px;
}
