*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:Arial,Helvetica,sans-serif;
  background:#0b0b0b;
  color:#fff;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center
}
.container{
  max-width:1100px;
  width:100%;
  padding:40px 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center
}
h1{
  font-size:clamp(2.5rem,5vw,4.5rem);
  font-weight:900;
  line-height:1.1;
  text-transform:uppercase
}
.highlight{color:#e63946}
.image-wrapper{
  width:100%;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.6)
}
.image-wrapper img{width:100%;display:block}
.cta-text{margin-top:24px;font-size:1.1rem;opacity:.9}
.cta-btn{
  display:inline-block;
  margin-top:12px;
  padding:14px 22px;
  border-radius:999px;
  background:#2aabee;
  color:#fff;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(42,171,238,.35)
}
@media(max-width:768px){
  .container{grid-template-columns:1fr}
  h1{text-align:center}
}
