/* Premium Apple-style: Left photo / Right text */
*{box-sizing:border-box}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,'Helvetica Neue',Helvetica,Arial,sans-serif;
  color:#111;
  background:#fff;
  line-height:1.6;
}
header{
  padding:18px 32px;
  border-bottom:1px solid #eee;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo{font-weight:600;font-size:20px}
nav a{margin-left:18px;text-decoration:none;color:#333;font-size:16px}
.hero{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
  max-width:1100px;
  margin:48px auto;
  padding:0 20px;
}
.hero-left{
  flex:0 0 30%;
  max-width:30%;
}
.hero-left img{
  width:100%;
  height:auto;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  display:block;
  object-fit:cover;
}
.hero-right{
  flex:1;
  max-width:48%;
}
.hero-right h1{
  font-size:40px;
  margin:0 0 14px;
  font-weight:700;
}
.hero-right p{
  font-size:19px;
  margin:0 0 22px;
  color:#333;
}
.cta{
  display:inline-block;
  background:#0071e3;
  color:#fff;
  padding:14px 30px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 8px 20px rgba(3,102,214,0.18);
}
.section{
  max-width:900px;
  margin:40px auto;
  padding:0 20px;
  font-size:18px;
  color:#222;
}
.footer{
  text-align:center;
  padding:40px 20px;
  color:#666;
  border-top:1px solid #eee;
  margin-top:40px;
}

/* Responsive */
@media (max-width:900px){
  .hero{
    flex-direction:column;
    gap:24px;
    margin:30px auto;
  }
  .hero-left,
  .hero-right{
    max-width:100%;
    flex:1;
  }
  .hero-right h1{
    font-size:32px;
  }
  .cta{
    padding:12px 22px;
    font-size:18px;
  }
}



/* --- Appended SEO & layout helpers (non-disruptive) --- */
/* Utility container for service pages */
.st-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Service page hero */
.st-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.st-hero img{ max-width:320px; width:100%; height:auto; border-radius:12px; box-shadow:0 8px 20px rgba(0,0,0,0.08); }

/* Call to action */
.st-cta {
  display:inline-block;
  padding:12px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* FAQ section */
.st-faq dt{ font-weight:700; margin-top:12px; }
.st-faq dd{ margin-left:0; margin-bottom:12px; }

/* Responsive tweaks */
@media (max-width:640px){
  .st-hero{ flex-direction:column; }
  .st-container{ padding:16px; }
}
