:root{
  --blue:#0f3d66;
  --dark:#0b2e4d;
  --orange:#ff8a00;
  --bg:#f4f7fb;
  --white:#ffffff;
  --text:#1e293b;
  --border:#dbe3ee;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{text-decoration:none;color:var(--blue)}
.container{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
}
.topbar{
  background:var(--dark);
  color:#fff;
  padding:14px 0;
}
.header-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.logo{
  width:220px;
  height:auto;
}
.header-contact{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.header-contact a{color:#fff}
.hero{
  background:linear-gradient(135deg,#eaf2fb 0%,#ffffff 60%,#fff1df 100%);
  padding:70px 0;
}
.hero h1{
  margin:0 0 12px;
  color:var(--dark);
  font-size:clamp(32px, 5vw, 54px);
}
.hero p{
  max-width:700px;
  margin:0 0 24px;
  font-size:18px;
}
.buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:700;
}
.btn.primary{
  background:var(--orange);
  color:#fff;
  border-color:var(--orange);
}
.section{
  padding:60px 0;
}
.section.alt{
  background:#edf3fa;
}
.section h2{
  margin-top:0;
  color:var(--dark);
}
.grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:16px;
  padding:22px;
  font-weight:700;
}
.footer{
  background:var(--dark);
  color:#fff;
  padding:22px 0;
}

@media (max-width: 800px){
  .grid{grid-template-columns:1fr 1fr;}
}
@media (max-width: 560px){
  .grid{grid-template-columns:1fr;}
  .logo{width:180px;}
}
.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.service-card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.service-card img{
width:100%;
height:200px;
object-fit:cover;
}

.service-card h3{
padding:15px 15px 5px;
margin:0;
}

.service-card p{
padding:0 15px 15px;
margin:0;
color:#555;
}
