
section {
  display: flex;
  justify-content: center;

}
#section-header {
  background: #0B1A63;
  
  min-height: 400px;
  position: relative;
}
.page-title{
  color: #FFF;
  position: absolute;
  bottom: 25%;
}


.flow-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flow-card {
  width: 220px;
  background: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.flow-header {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 80px;
  background: #3E85DD;
  color: white;
  padding: 15px 30px;
  font-weight: bold;
  text-align: center;
  clip-path: polygon(
    0% 0%,     /* sisi kiri atas miring masuk */
    90% 0%,     /* kanan atas sebelum lancip */
    100% 50%,   /* ujung lancip kanan */
    90% 100%,   /* kanan bawah sebelum lancip */
    0% 100%,   /* sisi kiri bawah miring masuk */
    10% 50%      /* ujung lancip kiri */
  );
  font-size: 18px;
}

.flow-body {
  padding: 15px;
  flex-grow: 1;
  
}

.flow-body ul {
  padding-left: 18px;
  margin: 0;
}

.flow-body li {
  margin-bottom: 6px;
  font-size: 18px;
}

.flow-footer {
  /* background: #f7f7f7; */
  text-align: left;
  padding: 10px;
  font-weight: bold;
  height: 100px;
  font-size: 20px;
}


@media (max-width: 768px) {

  #section-header {
    min-height: 300px;
  }
  .page-title{
    bottom: 10% !important;

  }

  .flow-container {
    margin: 0 20px;
  }
  .flow-card {
    width: 320px;
    background: white;
    border-radius: 8px;
    
    padding: 10px;
  }
  .flow-card:hover {
    background: rgba(62, 133, 221, .2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    
  }


}