/* Tambahkan CSS berikut */
.footer {
    background: #1a237e;
    padding: 40px 0 20px;
    width: 100%;
    position: relative;
    bottom: 0;
    color: #fff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand {
    max-width: 100%;
}

.footer-brand img {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links li {
    width: 100%;
    text-align: left;
}

.footer-links a {
    color: #e8eaf6;
    text-decoration: none;
    padding: 8px 0;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #64b5f6;
}

.footer-contact p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #283593;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

.social-links a:hover {
    background: #1976d2;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #283593;
    margin-top: auto;
    color: #c5cae9;
}

.footer h4 {
    color: #64b5f6;
    margin-bottom: 20px;
}

/* Media Queries untuk Responsif */
@media screen and (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-brand, 
    .footer-links,
    .footer-contact {
        text-align: center;
        align-items: center;
    }
    
    .footer-brand img {
        margin: 0 auto 15px;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-main {
        gap: 15px;
    }
}