/* Copyright Sarvasamanya Adhyayan (OPC) Private Limited 2025 */
/* Version 2512070830 */
:root{
  --brand:#1B73C6;
  --accent:#25D366;
  --muted:#666666;
  --max-width:1100px;
  --radius:10px;
}

*{box-sizing:border-box;margin:0;padding:0;}

body{
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  color:#222;
  font-size:16px;
  line-height:1.6;
  background:#ffffff;
}

.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:20px;
}

/* Header */

.site-header{
  border-bottom:1px solid #eee;
  background:#fff;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}

.logo{
  height:52px;
}

.nav a{
  margin:0 10px;
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}

.nav a:hover{
  color:#111;
}

.whatsapp-top{
  background:var(--accent);
  color:#fff;
  padding:8px 12px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}

/* Hero */

.hero{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:32px;
  padding:40px 0 20px;
  align-items:center;
}

.hero h1{
  font-family:'Merriweather','Georgia',serif;
  font-size:32px;
  margin-bottom:12px;
}

.lead{
  font-size:18px;
  margin-bottom:14px;
}

.hero-ctas{
  margin-top:10px;
  margin-bottom:10px;
}

.btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
}

.btn.primary{
  background:var(--brand);
  color:#fff;
}

.btn.primarywa{
  background:var(--accent);
  color:#fff;
}

.btn.outline{
  border:1px solid #ddd;
  color:var(--muted);
  background:transparent;
}

.btn + .btn{
  margin-left:10px;
}

.quick-problems{
  list-style:none;
  margin-top:10px;
}

.quick-problems li{
  padding:4px 0;
  color:var(--muted);
}

.hero-right .video-wrap{
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(20,30,40,0.08);
}

.small{
  font-size:13px;
}

.muted{
  color:var(--muted);
}

/* Sections */

.section{
  padding:32px 0;
}

.section h1{
  font-family:'Merriweather','Georgia',serif;
  font-size:28px;
  margin-bottom:10px;
}

.section h2{
  font-family:'Merriweather','Georgia',serif;
  font-size:22px;
  margin:18px 0 8px;
}

.section p{
  margin-bottom:10px;
}

.section2{
  padding:0 0;
}

.section2 h1{
  font-family:'Merriweather','Georgia',serif;
  font-size:28px;
  margin-bottom:10px;
}

.section2 h2{
  font-family:'Merriweather','Georgia',serif;
  font-size:22px;
  margin:18px 0 8px;
}

.section2 p{
  margin-bottom:0px;
}

.section ul, .section ol{
  margin:8px 0 12px 20px;
}

.card{
  background:#fafafa;
  padding:20px;
  border-radius:12px;
}

.trust-grid{
  display:flex;
  gap:18px;
  margin-top:14px;
}

.trust-grid > div{
  flex:1;
}

.buckets{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:16px;
}

.buckets article{
  border:1px solid #eeeeee;
  padding:15px;
  border-radius:10px;
  background:#fff;
}

.buckets h4{
  font-family:'Merriweather',serif;
  margin-bottom:6px;
}

.test-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:16px;
}

.test-grid blockquote{
  background:#f8f9fb;
  padding:14px;
  border-left:4px solid var(--brand);
  border-radius:8px;
}

.test-grid cite{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
}

.other-programs .programs-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}

.program{
  display:inline-block;
  padding:8px 12px;
  border-radius:8px;
  border:1px solid #e5e5e5;
  text-decoration:none;
  color:var(--muted);
  font-size:14px;
}

.program:hover{
  border-color:var(--brand);
  color:var(--brand);
}

.center{
  text-align:center;
  margin-top:12px;
}

.legal h1{
  margin-bottom:8px;
}

.linkedhref {
  text-decoration:none;
  color:var(--muted);
}
.linkedhref:hover {
  text-decoration:underline;
  color:blue;
}

/* Footer */

.site-footer{
  border-top:1px solid #eee;
  margin-top:20px;
  padding:20px 0;
}

.site-footer p{
  font-size:14px;
  color:var(--muted);
}

.foot-nav a{
  margin-right:12px;
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
}

.foot-nav a:hover{
  color:#000;
}

/* Responsive */

@media (max-width:900px){
  .hero{
    grid-template-columns:1fr;
  }
  .trust-grid{
    flex-direction:column;
  }
  .buckets{
    grid-template-columns:repeat(2,1fr);
  }
  .test-grid{
    grid-template-columns:1fr;
  }
  .nav{
    display:none;
  }
}

@media (max-width:520px){
  .container{
    padding:16px;
  }
  .hero h1{
    font-size:24px;
  }
  .logo{
    height:44px;
  }
  .buckets{
    grid-template-columns:1fr;
  }
}
