
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body{
margin:0;
font-family:'Poppins',sans-serif;
line-height:1.8;
color:#1f2933;
background:#f8fafc;
}

.hero{
background:
linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url('../images/EBITDA-Based-Business-Sale.jpg') center/cover no-repeat;
padding:150px 20px;
color:#fff;
text-align:center
}

.hero h1{font-size:56px;margin-bottom:20px;font-weight:700}
.hero p{font-size:22px;margin-bottom:40px;max-width:900px;margin-left:auto;margin-right:auto}

.btn{
display:inline-block;
padding:15px 30px;
background:#f97316;
color:#fff;
text-decoration:none;
font-weight:600;
border-radius:6px;
}

section{
padding:100px 20px;
max-width:1200px;
margin:auto
}

.about{
background:linear-gradient(135deg,#eef2f7,#ffffff)
}

.about-wrap{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center
}

.about img{
width:100%;
border-radius:10px
}

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

.card{
background:#fff;
border-radius:10px;
padding:30px;
box-shadow:0 10px 25px rgba(0,0,0,.08)
}

.card img{
width:100%;
height:210px;
object-fit:cover;
border-radius:8px;
margin-bottom:20px
}

footer{
background:#0f172a;
color:#cbd5e1;
padding:80px 20px
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
max-width:1200px;
margin:auto
}

footer h4{color:#fff;margin-bottom:15px}
footer a{color:#f97316;text-decoration:none;display:block;margin-bottom:8px}
