<style>
.container{
  font-family:"Segoe UI",Arial,sans-serif;
  max-width:1100px;
  margin:auto;
  color:#333;
  line-height:1.7;
}

.hero{
  background:linear-gradient(135deg,#1f3c88,#3498db);
  color:white;
  padding:60px 40px;
  border-radius:18px;
  margin-bottom:40px;
  text-align:center;
}

.hero h1{
  font-size:40px;
  margin-bottom:10px;
}

.hero p{
  font-size:18px;
  opacity:.95;
}

.section{
  margin-bottom:50px;
}

h2{
  color:#1f3c88;
  border-left:6px solid #3498db;
  padding-left:12px;
  margin-bottom:20px;
}

.card{
  background:white;
  padding:25px;
  border-radius:16px;
  box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.feature{
  background:#f8fbff;
  border-radius:14px;
  padding:20px;
  transition:.3s;
}

.feature:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.img{
  width:100%;
  height:280px;
  background:url('https://picsum.photos/1200/700') center/cover;
  border-radius:16px;
  margin-top:20px;
}

.img-small{
  width:100%;
  height:220px;
  background:url('https://picsum.photos/800/600') center/cover;
  border-radius:14px;
}

.img-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:12px;
}

.table th{
  background:#3498db;
  color:white;
  padding:14px;
}

.table td{
  padding:14px;
  border:1px solid #eee;
  text-align:center;
}

ul{
  padding-left:20px;
}

.highlight{
  background:#eef7ff;
  border-left:4px solid #3498db;
  padding:18px;
  border-radius:12px;
}

.cta{
  display:block;
  text-decoration:none;
  background:linear-gradient(135deg,#3498db,#1f3c88);
  color:white;
  padding:25px;
  border-radius:18px;
  text-align:center;
  font-size:22px;
  font-weight:bold;
  transition:.3s;
}

.cta:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.cta small{
  display:block;
  margin-top:8px;
  font-size:14px;
  font-weight:normal;
}

@media(max-width:768px){
  .hero{
    padding:40px 20px;
  }

  .hero h1{
    font-size:30px;
  }

  .img-row{
    grid-template-columns:1fr;
  }
}
</style>