.custom-card {
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  position: relative;
}

.custom-section {
  flex: 1;
  padding: 20px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.left-section {
  background-color: #1e6292; /* Biru tua */
}

.right-section {
  background-color: #ff7f00; /* Oranye */
}

.custom-section i {
  font-size: 30px;
  margin-bottom: 10px;
}

.custom-section p {
  margin: 0;
  font-weight: bold;
  font-size: 16px;
}

.custom-link {
  margin-top: 5px;
  color: white;
  text-decoration: underline;
  font-size: 14px;
}

.custom-link:hover {
  text-decoration: none;
  color: #ddd;
}

/* Panah di tengah */
.custom-card:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  background-color: #ff7f00; /* Warna oranye */
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.custom-card:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  background-color: #ff7f00; /* Warna biru */
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
