*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#fff6f8;
color:#333;
}

header{

display:flex;
justify-content:space-between;
padding:25px 80px;
align-items:center;
position:fixed;
width:100%;
background:white;
box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.logo{

font-size:35px;
font-weight:bold;
color:#e74374;

}

nav a{

text-decoration:none;
margin-left:30px;
color:#444;

}

.hero{

height:100vh;
display:flex;
align-items:center;
justify-content:space-around;
padding:100px;

}

.left{

width:45%;

}

.left h1{

font-size:55px;
line-height:65px;
color:#e74374;

}

.left p{

margin:30px 0;
font-size:18px;
line-height:30px;

}

button{

background:#e74374;
color:white;
padding:18px 45px;
border:none;
border-radius:50px;
font-size:18px;
cursor:pointer;
transition:.3s;

}

button:hover{

transform:translateY(-5px);

}

.right img{

width:500px;

animation:float 5s infinite ease-in-out;

}

.features{

display:flex;
justify-content:center;
gap:40px;
padding:100px;

}

.card{

background:white;
padding:40px;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
width:320px;
text-align:center;

}

.about{

display:flex;
align-items:center;
justify-content:center;
padding:120px;
gap:80px;

}

.about img{

width:400px;
border-radius:30px;

}

.cta{

background:#e74374;
color:white;
padding:100px;
text-align:center;

}

footer{

padding:30px;
text-align:center;
background:#111;
color:white;

}

@keyframes float{

0%{transform:translateY(0);}
50%{transform:translateY(-20px);}
100%{transform:translateY(0);}

}