/* ✅ Footer Styling */
.footer-container {
    background: black;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 4px solid #fff; /* Garis emas */
    font-family: Arial, sans-serif;
}

/* Judul Artikel */
.footer-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #FFD700; /* Warna emas */
}

/* Artikel di Footer */
.footer-content {
    max-width: 900px;
    margin: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-article {
    background: grey;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.footer-article:hover {
    background: grey;
    transform: scale(1.02);
}

/* Judul Artikel */
.footer-article h3 {
    font-size: 18px;
    font-weight: bold;
    color: #FFD700; /* Warna emas */
    margin-bottom: 5px;
}

/* Isi Artikel */
.footer-article p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}

.footer-bottom a {
    color: #FFD700;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
