/* Responsif: Mengubah gaya indicator untuk layar berukuran kecil */
@media screen and (max-width: 768px) {
    .indicator {
        width: 25px; /* Ubah lebar indicator untuk layar kecil */
        margin: 0 3px; /* Ubah margin untuk menyesuaikan lebar yang lebih kecil */
    }
}
h5 {
    font-size: 16px;
    text-align: center;
}

h4 {
    font-size: 16px;
    color: white;
    text-align: center;
}

.footer-hr {
    text-align: center;
}

.footer a {
    text-decoration: none; /* Remove the default underline */
    color: #b2b6be; /* Your link color */
    transition: color 0.3s; /* Transition effect for color on hover */
    font-size: 13px;
}

/* Style for links when hovered (with underline) */
.footer a:hover {
    text-decoration: underline; /* Add underline on hover */
}