*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#ffffff;
color:#222;
}

header{
background:#000;
padding:15px 5%;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.logo img{
height:60px;
}

nav a{
color:white;
text-decoration:none;
margin-left:20px;
font-weight:bold;
}

.hero img{
width:100%;
display:block;
}

.section{
padding:60px 5%;
text-align:center;
}

.section h2{
margin-bottom:30px;
color:#e91e63;
}

.section img{
width:100%;
max-width:1200px;
border-radius:15px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 0 15px rgba(0,0,0,.1);
}

.card img{
width:100%;
}

.card h3{
padding:15px;
}

.btn{
display:inline-block;
background:#e91e63;
color:white;
padding:15px 30px;
border-radius:50px;
text-decoration:none;
margin-top:20px;
}

footer{
background:#000;
color:white;
text-align:center;
padding:20px;
}

@media(max-width:768px){

header{
flex-direction:column;
gap:15px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

nav a{
margin:8px;
}
}
