h1 { font-size: 23px; } /* Ukuran untuk H1 */
h2 { font-size: 18px; } /* Ukuran untuk H2 */
h3 { font-size: 15px; } /* Ukuran untuk H3 */
h4 { font-size: 15px; } /* Ukuran untuk H4 */
h5 { font-size: 15px; } /* Ukuran untuk H5 */
h6 { font-size: 14px; } /* Ukuran untuk H6 */
p{
    font-size: 14px;
    text-align: left;
    white-space: pre-line; /* Mempertahankan baris baru */
    word-wrap: break-word; /* Memastikan teks panjang tetap dalam batas */
    color: rgb(95, 94, 94);
}

.container-single {
    width: 720px; /* Atur lebar container */
    max-width: 100%; /* Memastikan container tidak melampaui lebar viewport */
    margin: 100px auto; /* Margin atas 100px dan bawah 100px */
    padding: 20px;
    padding-bottom: 100px; /* <<< Tambahan agar konten tidak ketutup footer */
    background-color: #ffffff;

    /* Menambahkan shadow yang lebih tebal */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 2px 0 4px rgba(0, 0, 0, 0.05), -2px 0 4px rgba(0, 0, 0, 0.05);
}

.owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.owl-carousel img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background-color: #fff;
}

.container-kost {
    align-items: center;
}

.container-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.harga {
    text-align: left;
}

.kode {
    text-align: right;
}
.harga, .kode {
    flex: 1;
}

.Fasilitas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0;
    padding: 0;
}

.fasilitas-grid {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin: 5px 0;
    padding: 0;
}

.icon {
    margin-right: 5px;
    width: 25px;
    height: 25px;
    display: block;
    object-fit: contain;
}

h3 {
    margin: 0;
}

@media (max-width: 768px) {
    .Fasilitas {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 20px; }
    h2 { font-size: 16px; }
    h3 { font-size: 12.5px; }
    p { font-size: 12.5px; }
    
    .container-single {
        padding-bottom: 80px; /* versi mobile sedikit lebih kecil */
    }
}
