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

.topbar{
background:#ff8d8d;
color:white;
display:flex;
justify-content:space-around;
padding:10px;
font-size:14px;
flex-wrap:wrap;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:white;
box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:bold;
font-size:20px;
}

.logo img{
width:60px;
height:60px;
border-radius:50%;
object-fit:cover;
}

.navbar ul{
display:flex;
gap:20px;
list-style:none;
}

.navbar a{
text-decoration:none;
color:#1d2b53;
font-weight:bold;
}

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:60px 10%;
background:#fff5f5;
flex-wrap:wrap;
}

.hero-text{
max-width:500px;
}

.hero-text h1{
font-size:60px;
color:#1d2b53;
}

.hero-text p{
font-size:20px;
line-height:1.6;
}

.hero-image img{
width:450px;
border-radius:20px;
max-width:100%;
}

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

.services{
padding:80px 10%;
text-align:center;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:40px;
}

.card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.about{
padding:80px 10%;
background:#fff5f5;
}

.contact{
padding:80px 10%;
text-align:center;
}

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

@media(max-width:768px){
.hero-text h1{
font-size:40px;
}
}


.gallery{
padding:80px 10%;
text-align:center;
background:white;
}

.gallery-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-top:40px;
}

.gallery-grid img{
width:100%;
border-radius:20px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

@media(max-width:768px){
.gallery-grid{
grid-template-columns:1fr;
}
}
