/* =================================== FOOTER =================================== */
.footer {
    background-color: #5d5c59;
    color: white;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-info,
.footer-links,
.footer-time {
    font-size: 15px;
}

.footer-info p {
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    transition: text-decoration 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-time p,
.footer-info p {
    margin-bottom: 8px;
}

/* Copyright bawah footer */
.copyright {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

/* Bold text helper */
.bold {
    font-weight: bold;
}

/* =================================== RESPONSIVE =================================== */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
