.container-sm {
  width: 100%; /* Pastikan menggunakan 100% agar selebar website */
  margin: 0 auto;
}

.icon-text {
  display: inline-flex;
  align-items: center;
  gap: 7px; /* Mengatur jarak antara ikon dan teks */
  margin-bottom: 10px;
}

.card-sub {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  height: 100%;
  /* padding: 17px;  */
  background-color: white;
  border-radius: 20px;
  /* border: 2px solid #ddd; */
  border: 1px solid #31112C;
  box-shadow: 0 4px 0 #31112C;
}

.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom: 1px solid lightgray;
  height: 220px;

}

/* .card-img-dash {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom: 1px solid lightgray;
  height: 120px;
} */

.card-sub p {
  text-align: justify;
  margin-top: 15px;
  margin-bottom: 20px;
} 

.card p {
  margin-top: 15px;
  margin-bottom: 20px;
}

.card-sub h5 {
  color: #31112C ;
}

.btn-sm {
  background-color: #31112C;
  color: white;
  font-size: 16px;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-sm:hover{
  background-color: #7D0633;
  color: white;
}

/* Latar belakang dengan gradien */
.contact-section {
  background: #FBDCC4;
  color: black;
  padding: 50px 0;
}

/* Judul Halaman */
.contact-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* Ikon dan teks kontak */
.contact-item {
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 30px;
  margin-right: 15px;
  color: black;
}

.contact-item span {
  font-size: 18px;
  font-weight: 500;
}

.header-container {
  display: flex;
  align-items: center; /* Menjaga elemen sejajar secara vertikal */
  gap: 10px; /* Jarak antar elemen */
}