.u-section-1 .u-sheet-1 {
  min-height: 510px;
}

.u-section-1 .u-custom-html-1 {
  margin-bottom: 60px;
  margin-top: 110px;
}@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #f3f4f6;
  color: #111827;
  line-height: 1.6;
}
/* HERO SECTION */
.hero {
  height: 80vh;
  background: linear-gradient(135deg, #0b1d51, #1e3a8a, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  filter: blur(60px);
}
.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 20px;
}
.hero-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ef4444;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.hero-btn:hover {
  background: #dc2626;
  transform: scale(1.05);
}
/* MAIN CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}
/* GRID LAYOUT */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
/* CARDS */
.card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.card h2 {
  color: #1d4ed8;
  margin-bottom: 10px;
  font-size: 22px;
}
/* LIST */
ul {
  padding-left: 20px;
}
ul li {
  margin-bottom: 8px;
  font-weight: 500;
}
/* CTA */
.cta {
  margin-top: 30px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  text-align: center;
  padding: 20px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(220,38,38,0.3);
}
/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  background: #111827;
  color: #cbd5e1;
  margin-top: 40px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 34px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}