*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins', sans-serif;
background:linear-gradient(135deg,#ffe4ec,#ffd1dc);
color:#333;
}

/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 40px;
background:#ff4d6d;
color:white;
}

.logo{
font-size:26px;
font-weight:700;
}

.menu-icon{
font-size:28px;
cursor:pointer;
}

/* HERO SECTION */

.hero{
text-align:center;
padding:80px 20px;
}

.hero h1{
font-size:40px;
color:#c9184a;
margin-bottom:15px;
}

.hero p{
max-width:600px;
margin:auto;
margin-bottom:30px;
font-size:18px;
}

.hero-btn{
background:#ff4d6d;
color:white;
border:none;
padding:14px 28px;
font-size:16px;
border-radius:30px;
cursor:pointer;
transition:0.3s;
}

.hero-btn:hover{
background:#d6336c;
}

/* SERVICE CARDS */

.services{
display:flex;
justify-content:center;
gap:30px;
padding:60px;
flex-wrap:wrap;
}

.card{
background:white;
width:300px;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
text-align:center;
padding-bottom:25px;
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.card h2{
color:#ff4d6d;
margin:15px 0;
}

.card p{
padding:0 20px;
margin-bottom:20px;
font-size:15px;
}

.card button{
background:#ff4d6d;
border:none;
color:white;
padding:10px 20px;
border-radius:20px;
cursor:pointer;
transition:0.3s;
}

.card button:hover{
background:#c9184a;
}