* {
box-sizing:border-box;
}

body {
margin:0;
font-family:Arial,sans-serif;
background:#fff0f6;
color:#333;
}


.hero {
height:500px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
background:linear-gradient(135deg,#ff7eb3,#ff758c,#ffd86f);
color:white;
text-align:center;
}


.hero h1 {
font-size:55px;
}


.hero a {
background:white;
color:#ff4f81;
padding:15px 35px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}


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


h2 {
font-size:35px;
color:#ff4f81;
}


.services {
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}


.box {
background:white;
padding:25px;
width:280px;
border-radius:20px;
box-shadow:0 10px 25px #ddd;
}


.gallery {
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}


.gallery img {
width:260px;
height:260px;
object-fit:cover;
border-radius:20px;
transition:0.4s;
}


.gallery img:hover {
transform:scale(1.12);
}


.contact {
background:#ff7eb3;
color:white;
}


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


@media(max-width:600px){

.hero h1 {
font-size:35px;
}

.gallery img {
width:90%;
}

}
