/* GLOBAL */
.container {
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* HEADER */
.site-header {
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid #eee;
  z-index:999;
}

.logo a {
  font-weight:bold;
  font-size:18px;
  color:#1d2b53;
  text-decoration:none;
}

.nav a {
  margin:0 12px;
  text-decoration:none;
  color:#333;
  font-size:14px;
}

.nav a:hover {
  color:#1d2b53;
}

.cta-btn {
  background:#1d2b53;
  color:#fff;
  padding:8px 14px;
  border-radius:6px;
  font-size:13px;
  text-decoration:none;
}

/* HERO */
.hero {
  text-align:center;
  padding:100px 20px 60px;
}

.hero h1 {
  font-size:42px;
  color:#1d2b53;
}

.hero p {
  font-size:18px;
  color:#555;
  margin:20px auto;
  max-width:700px;
}

.buttons {
  margin-top:20px;
}

.btn-main {
  background:#1d2b53;
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
  text-decoration:none;
  margin-right:10px;
}

.btn-outline {
  border:1px solid #1d2b53;
  color:#1d2b53;
  padding:10px 18px;
  border-radius:6px;
  text-decoration:none;
}

/* SERVICES */
.services {
  padding:70px 20px;
}

.section-title {
  text-align:center;
  font-size:30px;
  color:#1d2b53;
  margin-bottom:40px;
}

.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.service-card {
  padding:25px;
  border:1px solid #eee;
  border-radius:12px;
  background:#fff;
  transition:0.25s;
}

.service-card:hover {
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.service-card h3 {
  margin-bottom:10px;
  color:#1d2b53;
}

.service-card p {
  color:#555;
  line-height:1.6;
}

/* CTA */
.cta {
  text-align:center;
  padding:60px 20px;
  background:#1d2b53;
  color:#fff;
  margin:60px auto;
  border-radius:12px;
  max-width:1100px;
}

.cta p {
  color:#dbe3f5;
  margin-bottom:20px;
}

.cta .white {
  background:#fff;
  color:#1d2b53;
  padding:10px 18px;
  border-radius:6px;
  text-decoration:none;
}


.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.nav {
  display:flex;
  gap:20px;
}

.cta-btn {
  white-space:nowrap;
}