* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #222;
  line-height: 1.7;
}

/* ===== UTIL ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== HERO ===== */
.inner-hero {
  background: linear-gradient(135deg, #0a2540, #123a6f);
  padding: 110px 20px 90px;
  color: #fff;
}

.inner-hero-content {
  max-width: 1100px;
  margin: auto;
}

.inner-hero h1 {
  font-size: 40px;
  font-weight: 700;
}

.inner-hero p {
  margin-top: 14px;
  max-width: 700px;
  font-size: 16px;
  opacity: 0.95;
}

/* ===== SERVICE CARDS ===== */
.service-cards {
  padding: 60px 0;
  background: #f9fafc;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.service-card h3 {
  color: #0a2540;
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #444;
}

/* ===== CONTENT ===== */
.content {
  padding: 60px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.content-left h2,
.content-left h3 {
  color: #0a2540;
}

.content-left h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.content-left h3 {
  margin-top: 28px;
  font-size: 22px;
}

.content-left p {
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  margin-top: 10px;
}

.check-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0a2540;
  font-weight: bold;
}

/* ===== SIDEBAR ===== */
.info-box {
  background: #f9fafc;
  padding: 24px;
  border-radius: 8px;
}

.info-box h4 {
  margin-bottom: 12px;
  color: #0a2540;
}

/* ===== CTA ===== */
.quote-cta {
  padding: 50px 20px;
}

.quote-inner {
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(135deg, #0a2540, #0f2f5a);
  color: #fff;
  border-radius: 14px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.quote-inner h2 {
  font-size: 28px;
}

.quote-inner p {
  margin-top: 10px;
  font-size: 14px;
  max-width: 620px;
}

.quote-btn {
  background: #fff;
  color: #0a2540;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a1f3f;
  color: #fff;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.site-footer h4 {
  margin-bottom: 14px;
  font-size: 16px;
}

.site-footer p,
.site-footer li {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.social-icons span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #0a1f3f;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 16px;
  text-align: center;
  font-size: 13px;
  background: #07172f;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .quote-inner {
    flex-direction: column;
    text-align: center;
  }
}
