/* Add custom CSS styles below */ 
/* Futurez UI Library v1 */

:root{
  --fz-primary:#00BAED;
  --fz-dark:#092556;
  --fz-light:#F5F9FC;
  --fz-text:#101828;
  --fz-muted:#667085;
  --fz-white:#FFFFFF;
  --fz-radius:22px;
  --fz-shadow:0 18px 45px rgba(9,37,86,.12);
}

.fz-page{
  direction:rtl;
  font-family:inherit;
  color:var(--fz-text);
}

.fz-section{
  padding:70px 20px;
}

.fz-container{
  max-width:1180px;
  margin:auto;
}

.fz-hero{
  background:linear-gradient(135deg,var(--fz-dark),#061936);
  color:#fff;
  border-radius:0 0 34px 34px;
  overflow:hidden;
}

.fz-hero-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}

.fz-badge{
  display:inline-block;
  background:rgba(0,186,237,.16);
  color:#8EEBFF;
  padding:8px 16px;
  border-radius:999px;
  font-size:14px;
  margin-bottom:18px;
}

.fz-title{
  font-size:46px;
  line-height:1.25;
  margin:0 0 18px;
  font-weight:800;
}

.fz-subtitle{
  font-size:19px;
  line-height:1.9;
  color:#D9E8F2;
  margin:0 0 26px;
}

.fz-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.fz-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  transition:.25s ease;
}

.fz-btn-primary{
  background:var(--fz-primary);
  color:#fff;
}

.fz-btn-secondary{
  background:#fff;
  color:var(--fz-dark);
}

.fz-btn:hover{
  transform:translateY(-2px);
  box-shadow:var(--fz-shadow);
}

.fz-hero-img{
  width:100%;
  border-radius:26px;
  box-shadow:var(--fz-shadow);
}

.fz-heading{
  text-align:center;
  margin-bottom:36px;
}

.fz-heading h2{
  font-size:34px;
  margin:0 0 10px;
  color:var(--fz-dark);
  font-weight:800;
}

.fz-heading p{
  margin:0;
  color:var(--fz-muted);
  font-size:17px;
}

.fz-grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.fz-grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.fz-card{
  background:#fff;
  border-radius:var(--fz-radius);
  padding:28px;
  box-shadow:var(--fz-shadow);
  border:1px solid rgba(9,37,86,.06);
}

.fz-card-icon{
  font-size:34px;
  margin-bottom:14px;
}

.fz-card h3{
  margin:0 0 10px;
  color:var(--fz-dark);
  font-size:21px;
}

.fz-card p{
  margin:0;
  color:var(--fz-muted);
  line-height:1.8;
}

.fz-light{
  background:var(--fz-light);
}

.fz-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  padding:0;
  margin:0;
  list-style:none;
}

.fz-list li{
  background:#fff;
  border-radius:16px;
  padding:16px 18px;
  box-shadow:0 8px 22px rgba(9,37,86,.08);
  font-weight:600;
}

.fz-steps{
  counter-reset:step;
}

.fz-step{
  position:relative;
}

.fz-step:before{
  counter-increment:step;
  content:counter(step);
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  background:var(--fz-primary);
  color:#fff;
  border-radius:50%;
  font-weight:800;
  margin-bottom:16px;
}

.fz-faq details{
  background:#fff;
  border-radius:18px;
  padding:18px 22px;
  margin-bottom:14px;
  box-shadow:0 8px 22px rgba(9,37,86,.08);
}

.fz-faq summary{
  cursor:pointer;
  font-weight:800;
  color:var(--fz-dark);
}

.fz-faq p{
  color:var(--fz-muted);
  line-height:1.8;
}

.fz-cta{
  background:linear-gradient(135deg,var(--fz-dark),#061936);
  color:#fff;
  text-align:center;
  border-radius:34px;
  padding:60px 25px;
}

.fz-cta h2{
  font-size:34px;
  margin:0 0 12px;
}

.fz-cta p{
  color:#D9E8F2;
  margin:0 0 24px;
}

@media(max-width:900px){
  .fz-hero-inner,
  .fz-grid-4,
  .fz-grid-3,
  .fz-list{
    grid-template-columns:1fr;
  }

  .fz-title{
    font-size:34px;
  }

  .fz-section{
    padding:50px 16px;
  }

  .fz-card{
    padding:22px;
  }
}