body{
  margin:0;
  font-family:system-ui, Arial;
  background:#f5f6f8;
  color:#111;
  line-height:1.5;
}

/* HEADER */
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px;


}

.logo{
  height:100px;
}

/* HERO */
.hero{
  display:flex;
  max-width:1100px;
  margin:auto;
  padding:40px 20px;
  gap:30px;
  align-items:center;
}

.hero-left{
  flex:1;
}

.hero-right img{
  max-width:320px;
  border:none;
  box-shadow:none;
}

/* CTA */
.cta{
  margin-top:15px;
}

.btn{
  display:inline-block;
  padding:10px 14px;
  background:#2d6cdf;
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  margin-right:8px;
  font-weight:600;
}

.danger{
  background:#d93025;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:12px;
  max-width:1100px;
  margin:auto;
  padding:15px 20px;
}

.card{
  background:#fff;
  padding:14px;
  border-radius:10px;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

/* CONTENT */
.content{
  max-width:900px;
  margin:auto;
  padding:10px 20px 30px;
}

.content h2{
  margin-top:20px;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:20px;
  font-size:14px;
  color:#666;
}

.footer a{
  color:#2d6cdf;
  text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-right img{
    max-width:240px;
  }
}