.saran-container {
    max-height: 800px;
    /* sesuaikan agar kira-kira muat 5 saran */
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ddd;
}

.kesaksian-container {
    max-height: 800px;
    /* sesuaikan kira kira 5 saran */
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ddd;
}

/* komentar bisa beda tinggi */
.komentar-container {
    max-height: 300px;
    /* muat sekitar 5 komentar */
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ddd;
}

/* Tambahan biar scrollbar lebih cantik (khusus Chrome/Edge) */
.saran-container::-webkit-scrollbar,
.kesaksian-container::-webkit-scrollbar,
.komentar-container::-webkit-scrollbar {
    width: 8px;
}

.saran-container::-webkit-scrollbar-thumb,
.kesaksian-container::-webkit-scrollbar-thumb,
.komentar-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.saran-container::-webkit-scrollbar-thumb:hover,
.kesaksian-container::-webkit-scrollbar-thumb:hover,
.komentar-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.saran-container h2, 
.kesaksian-container h2 {
    font-size: 24px;
    /* lebih besar */
    font-weight: 900;
    /* lebih tebal */
}