/* Styling footer */
.footer {
    background-color: #0c0f16; /* Warna gelap */
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

/* Container utama */
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

/* Setiap kolom dalam footer */
.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

/* Heading kolom */
.footer-column h5,
.footer-column h6 {
    margin-bottom: 10px;
}

/* List dalam footer */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: white;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

/* Ikon Sosial Media */
.footer-column a {
    font-size: 20px;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.footer-column a:hover {
    opacity: 1;
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsif */
@media screen and (max-width: 768px) {
    .footer {
        background-color: #0c0f16; /* Warna gelap */
        color: white;
        font-family: Arial, sans-serif;
    }
    .footer-container {
        justify-content: space-between;
        text-align: center;
    }
}