*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#FAF7F2;
color:#2D241A;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.page-header{
padding:100px 20px;
text-align:center;
background:#fff;
}

.page-header h1{
font-size:60px;
font-family:'Playfair Display',serif;
}

.page-header p{
margin-top:15px;
color:#666;
}

.services-section{
padding:80px 0;
}

.service-box{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
margin-bottom:100px;
}

.reverse .service-image{
order:2;
}

.reverse .service-content{
order:1;
}

.service-image img{
width:100%;
height:400px;
object-fit:cover;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-content h2{
font-size:40px;
margin-bottom:20px;
font-family:'Playfair Display',serif;
}

.service-content p{
line-height:1.8;
margin-bottom:20px;
}

.service-content h3{
color:#C9A227;
margin-bottom:25px;
font-size:28px;
}

.service-btn{
display:inline-block;
padding:14px 30px;
background:#C9A227;
color:white;
border-radius:50px;
text-decoration:none;
transition:.3s;
}

.service-btn:hover{
transform:translateY(-4px);
}

@media(max-width:768px){

.service-box{
grid-template-columns:1fr;
}

.reverse .service-image,
.reverse .service-content{
order:unset;
}

.page-header h1{
font-size:42px;
}

}