body{
    margin:0;
    font-family: -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Arial, sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.6;
}

/* ===== HEADER ===== */
header{
    background:#f7f7f7;
    padding:15px 20px;
    border-bottom:1px solid #ddd;
}
.header-inner{
    max-width:1100px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{
    font-size:22px;
    font-weight:bold;
    color:#1a4db3;
}
nav a{
    margin-left:20px;
    text-decoration:none;
    color:#222;
    font-size:16px;
}

/* ===== HERO ===== */
.hero{
    padding:60px 20px;
    text-align:center;
    background:#eef3ff;
}
.hero h1{
    font-size:36px;
    margin-bottom:15px;
}
.hero p{
    font-size:20px;
    margin-bottom:25px;
}
.hero a{
    display:inline-block;
    padding:14px 28px;
    background:#1a4db3;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    border-radius:6px;
}

/* ===== SECTIONS ===== */
.section{
    padding:50px 20px;
}
.section-inner{
    max-width:1100px;
    margin:auto;
}
.section h2{
    font-size:28px;
    margin-bottom:20px;
    text-align:center;
}
.list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.box{
    border:1px solid #ddd;
    padding:20px;
    border-radius:8px;
    background:#fafafa;
    font-size:17px;
}

/* ===== CTA ===== */
.cta{
    background:#1a4db3;
    color:#fff;
    text-align:center;
    padding:50px 20px;
}
.cta h2{
    font-size:30px;
    margin-bottom:15px;
}
.cta a{
    display:inline-block;
    padding:14px 30px;
    background:#ffffff;
    color:#1a4db3;
    text-decoration:none;
    font-size:18px;
    border-radius:6px;
}

/* ===== FOOTER ===== */
.footer{
  background:#f4f6fb;
  padding:70px 20px 30px;
  color:#333;
}
.footer-inner{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
}
.footer h3{
  font-size:24px;
  margin-bottom:12px;
  color:#1a4db3;
}
.footer h4{
  font-size:18px;
  margin-bottom:12px;
}
.footer p{
  font-size:16.5px;
  line-height:1.7;
}
.footer a{
  display:block;
  text-decoration:none;
  color:#333;
  margin-bottom:8px;
}
.footer a:hover{
  text-decoration:underline;
}
.footer-bottom{
  margin-top:40px;
  text-align:center;
  font-size:15px;
  border-top:1px solid #ddd;
  padding-top:20px;
}

/* Responsive */
@media(max-width:900px){
  .footer-inner{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:600px){
  .footer-inner{
    grid-template-columns:1fr;
    text-align:center;
  }
}

/* ===== MOBILE SENIOR OPTIMIZATION ===== */
@media(max-width:600px){
    .hero h1{font-size:28px;}
    .hero p{font-size:18px;}
    nav a{font-size:15px;}
}
.logo a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}

/* =====================
   GLOBAL
===================== */
.hero, .section, .trust-bar{
  width:100%;
}
.section-inner, .hero-inner{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}
h1,h2,h3{
  line-height:1.3;
}
p{
  line-height:1.7;
  font-size:17px;
  color:#333;
}

/* =====================
   HERO
===================== */
.hero{
  background:#eef3ff;
  padding:60px 0;
}
.hero-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}
.hero-text h1{
  font-size:40px;
  margin-bottom:15px;
}
.hero-text p{
  font-size:20px;
  margin-bottom:25px;
}
.btn-primary{
  display:inline-block;
  padding:14px 30px;
  background:#1a4db3;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-size:18px;
}
.hero-image img{
  width:100%;
  max-width:600px;
  border-radius:12px;
}

/* =====================
   TRUST BAR
===================== */
.trust-bar{
  background:#fff;
  border-bottom:1px solid #eee;
}
.trust-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-around;
  padding:15px 20px;
  font-size:16px;
}

/* =====================
   SECTIONS
===================== */
.section{
  padding:70px 0;
}
.section-light{
  background:#f8f9fb;
}
.section h2{
  text-align:center;
  font-size:32px;
  margin-bottom:15px;
}
.section-intro{
  text-align:center;
  max-width:720px;
  margin:0 auto 40px;
  font-size:18px;
  line-height:1.8;
}

/* =====================
   GRID / BOXES
===================== */
.list,
.services-grid,
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.box,
.why-box,
.service-card{
  background:#fff;
  border:1px solid #e0e0e0;
  border-radius:14px;
  padding:30px;
  text-align:center;
  transition:all .35s ease;
}
.box:hover,
.why-box:hover,
.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 28px rgba(0,0,0,.08);
}
.box h3,
.why-box h3,
.service-card h3{
  font-size:21px;
  margin-bottom:12px;
  color:#1a4db3;
}
.box p,
.why-box p,
.service-card p{
  font-size:16.5px;
  line-height:1.75;
}

/* =====================
   SERVICES ICONS
===================== */
.icon-circle{
  width:90px;
  height:90px;
  margin:0 auto 20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:4px solid rgba(255,255,255,.6);
}
.icon-circle svg{
  width:44px;
  height:44px;
  fill:#fff;
}

/* Icon colors */
.blue{background:linear-gradient(135deg,#3b82f6,#1e40af);}
.green{background:linear-gradient(135deg,#22c55e,#15803d);}
.purple{background:linear-gradient(135deg,#a855f7,#6b21a8);}
.orange{background:linear-gradient(135deg,#fb923c,#c2410c);}
.teal{background:linear-gradient(135deg,#2dd4bf,#0f766e);}
.red{background:linear-gradient(135deg,#ef4444,#991b1b);}
.pink{background:linear-gradient(135deg,#f472b6,#9d174d);}
.yellow{background:linear-gradient(135deg,#facc15,#a16207);}
.navy{background:linear-gradient(135deg,#1e3a8a,#020617);}

/* =====================
   TWO COLUMN
===================== */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}
.content h2{
  font-size:32px;
  margin-bottom:18px;
}
.content p{
  font-size:18px;
  line-height:1.9;
  margin-bottom:16px;
}
.image img{
  width:100%;
  max-width:520px;
  border-radius:14px;
}
.btn-secondary{
  display:inline-block;
  margin-top:20px;
  padding:14px 30px;
  border:2px solid #1a4db3;
  color:#1a4db3;
  text-decoration:none;
  border-radius:8px;
  font-size:18px;
}

/* =====================
   ANIMATION
===================== */


/* =====================
   RESPONSIVE
===================== */
@media(max-width:900px){
  .hero-inner,
  .two-col{
    grid-template-columns:1fr;
    text-align:center;
  }
  .list,
  .services-grid,
  .why-grid{
    grid-template-columns:1fr 1fr;
  }
  .image img{
    margin:0 auto;
  }
}
@media(max-width:600px){
  .hero-text h1{font-size:30px;}
  .list,
  .services-grid,
  .why-grid{
    grid-template-columns:1fr;
  }
  .section-intro{
    font-size:17px;
  }
}
