:root{
    --bg:#f8fafc;
    --surface:#ffffff;
    --muted:#64748b;
    --accent:#4f46e5;
    --accent-dark:#4338ca;
    --accent-600:#6366f1;
    --card:#ffffff;
    --glass:rgba(255,255,255,0.6);
    --max-width:1200px;
    --radius:14px;
    --container-padding:24px;
} 
.about-us{
  top:0!important;
  background:#ffffff; 
  color:#0f172a;       
  border-top:1px solid rgba(0,0,0,0.06); 
  padding:100px 72px; 
}
.about-inner{
  max-width:1000px; 
  margin:0 auto;
}
.about-us .sub-title{
  color:var(--accent);
  font-weight:700;
  letter-spacing:0.6px;
  margin-bottom:12px;
  font-size:14px;
  text-transform:uppercase;
}
.about-us .section-title{
  font-size:40px;
  line-height:1.2;
  font-weight:800;
}
.about-text{
  font-size:19px;
  line-height:1.7;
  max-width:720px;
  margin-bottom:28px;
  color:var(--muted);
}
.about-link{
  font-size:16px;
  color:#0f172a;
  text-decoration:none;
  position:relative;
  padding-right:28px;
  font-weight:600;
}
.about-link.has-chevron::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:8px;
  height:8px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:translateY(-50%) rotate(-45deg);
  transition:transform .3s ease;
}
.about-link:hover{
  color:var(--accent);
}
.about-link:hover::after{
  transform:translateY(-50%) rotate(-45deg) translateX(4px);
}