.banking-section{
  padding:24px 0;
}

.banking-head p{
  text-align:justify;
  text-justify:inter-word;
}

.banking-card{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow-soft);
  padding:18px;
  overflow:hidden;
}

.banking-card-top{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:16px;
  padding-bottom:14px;
  border-bottom:1px solid #e9eef5;
}

.banking-icon{
  width:48px;
  height:48px;
  flex:0 0 48px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:var(--primary-soft);
  font-size:22px;
}

.banking-card-top h3{
  margin:0 0 6px;
  font-size:1.05rem;
  line-height:1.35;
  color:var(--text);
}

.banking-subtext{
  margin:0;
  color:var(--muted);
  font-size:13.6px;
  line-height:1.65;
  text-align:justify;
  text-justify:inter-word;
}

.banking-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
}

.banking-list li{
  position:relative;
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:13px 14px 13px 42px;
  font-size:13.8px;
  line-height:1.75;
  color:var(--text);
  text-align:justify;
  text-justify:inter-word;
  box-shadow:0 4px 14px rgba(15,23,42,.03);
}

.banking-list li::before{
  content:"•";
  position:absolute;
  left:15px;
  top:10px;
  font-size:24px;
  line-height:1;
  color:var(--primary);
  font-weight:800;
}

.banking-list li strong{
  color:#0f172a;
  font-weight:800;
}

@media (min-width: 768px){
  .banking-card{
    padding:22px;
  }

  .banking-card-top{
    gap:16px;
    margin-bottom:18px;
    padding-bottom:16px;
  }

  .banking-icon{
    width:52px;
    height:52px;
    flex-basis:52px;
    font-size:24px;
  }

  .banking-card-top h3{
    font-size:1.12rem;
  }

  .banking-subtext{
    font-size:14px;
  }

  .banking-list{
    gap:14px;
  }

  .banking-list li{
    padding:15px 16px 15px 46px;
    font-size:14px;
    line-height:1.8;
  }

  .banking-list li::before{
    left:17px;
    top:12px;
    font-size:24px;
  }
}

@media (min-width: 992px){
  .banking-card{
    padding:24px;
    border-radius:24px;
  }

  .banking-card-top h3{
    font-size:1.18rem;
  }

  .banking-subtext{
    font-size:14.2px;
    max-width:820px;
  }

  .banking-list li{
    font-size:14.3px;
    line-height:1.85;
  }
}

@media (max-width: 575px){
  .banking-section{
    padding:20px 0;
  }

  .banking-card{
    padding:14px;
    border-radius:18px;
  }

  .banking-card-top{
    gap:12px;
    margin-bottom:14px;
    padding-bottom:12px;
  }

  .banking-icon{
    width:42px;
    height:42px;
    flex-basis:42px;
    border-radius:12px;
    font-size:20px;
  }

  .banking-card-top h3{
    font-size:.98rem;
  }

  .banking-subtext{
    font-size:13px;
    line-height:1.6;
  }

  .banking-list{
    gap:10px;
  }

  .banking-list li{
    padding:12px 12px 12px 38px;
    font-size:13px;
    line-height:1.72;
    border-radius:14px;
  }

  .banking-list li::before{
    left:13px;
    top:10px;
    font-size:22px;
  }
}