/* Styling untuk Header (latar biru) */
header {
    background-color: #007bff; /* Biru terang */
    color: #ffffff;            /* Teks putih */
    padding: 20px;
}
header a {
    color: #ffffff !important; /* Memaksa teks link di header jadi putih */
}

/* Styling untuk Footer (latar hitam) */
footer {
    background-color: #000000; /* Hitam */
    color: #ffffff;            /* Teks putih */
    padding: 20px;
    text-align: center;
}
footer a {
    color: #ffffff !important; /* Memaksa teks link di footer jadi putih */
    text-decoration: none;     /* Menghapus garis bawah */
}
footer a:hover {
    color: #cccccc !important; /* Warna berubah abu-abu saat disentuh mouse */
}