/* CARD */

.custom-card{
  border:none;
  border-radius:28px;
  background:white;
  box-shadow:0 5px 20px rgba(0,0,0,.05);
  overflow:hidden;
  height:100%;
}

.card-body-custom{
  padding:35px;
}

.info-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:rgba(253,128,46,.15);
  color:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:20px;
}

.summary-value{
  font-size:2rem;
  font-weight:800;
  color:var(--secondary);
}

.summary-label{
  color:#6c757d;
  margin-top:8px;
}

.service-item{
  display:flex;
  gap:18px;
  margin-bottom:30px;
}

.service-item:last-child{
  margin-bottom:0;
}

.service-icon{
  min-width:65px;
  height:65px;
  border-radius:18px;
  background:rgba(253,128,46,.12);
  color:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.table thead{
  background:var(--secondary);
  color:white;
}

.table td{
  vertical-align:middle;
}

/* MOBILE */

@media(max-width:768px){

  .summary-value{
    font-size:1.6rem;
  }

  .card-body-custom{
    padding:25px;
  }

}