  /* ===========================
  MAIN SECTION
  ============================ */
  .trusted-section{
  background:linear-gradient(135deg, #1d2d45, #046b3d, #22354d);
  border-radius:24px;
  padding:30px 35px;
  margin:24px;
  position:relative;
  overflow:hidden;
  }
  /* Decorative circles */
  .trusted-section::before{
  content:'';
  position:absolute;
  width:420px;
  height:420px;
  background:rgba(255,255,255,.03);
  border-radius:50%;
  top:-180px;
  right:-120px;
  }
  .trusted-section::after{
  content:'';
  position:absolute;
  width:280px;
  height:280px;
  background:rgba(255,255,255,.02);
  border-radius:50%;
  bottom:-120px;
  left:-80px;
  }
  /* ===========================
  HEADING
  ============================ */
  .section-top{
  text-align:center;
  position:relative;
  z-index:2;
  margin-bottom:42px;
  }
  .section-emoji{
  font-size:34px;
  margin-bottom:8px;
  }
  /* ===========================
  FEATURE CARD
  ============================ */
  .feature-card{
  background:#fff;
  border-radius:22px;
  padding:28px 18px;
  text-align:center;
  height:100%;
  position:relative;
  z-index:2;
  transition:all .35s ease;
  box-shadow:0 8px 22px rgba(0,0,0,.12);
  overflow:hidden;
  }
  .feature-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,
  rgba(255,255,255,0) 0%,
  rgba(255,94,58,.04) 100%);
  opacity:0;
  transition:.3s;
  }
  .feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 35px rgba(0,0,0,.18);
  }
  .feature-card:hover::before{
  opacity:1;
  }
  /* ===========================
  ICON
  ============================ */
  .feature-icon{
  width:88px;
  height:88px;
  margin:auto auto 22px;
  border-radius:50%;
  background:#f3f9f6;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:2;
  }
  .feature-icon i{
  font-size:42px;
  color:#046b3d;
  }
  /* ===========================
  CONTENT
  ============================ */
  .feature-title{
  font-size:22px;
  font-weight:700;
  color:#263248;
  line-height:1.4;
  margin-bottom:14px;
  position:relative;
  z-index:2;
  }
  .feature-desc{
  font-size:17px;
  color:#3e3e3e;
  line-height:1.8;
  margin-bottom:0;
  position:relative;
  z-index:2;
  }
  /* ===========================
  RESPONSIVE
  ============================ */
  @media(max-width:1399px){
  .section-title{
  font-size:48px;
  }
  }
  @media(max-width:991px){
  .trusted-section{
  padding:45px 22px;
  margin:14px;
  border-radius:20px;
  }
  .section-top{
  margin-bottom:28px;
  }
  .feature-icon{
  width:72px;
  height:72px;
  }
  .feature-icon i{
  font-size:34px;
  }
  .feature-title{
  font-size:20px;
  }
  .feature-desc{
  font-size:15px;
  }
  }
  @media(max-width:767px){
  .section-title{
  font-size:28px;
  }
  .feature-title{
  font-size:18px;
  }
  .feature-desc{
  font-size:14px;
  }
  }