.top-footer {
    background-color: #303C1B;
    padding: 50px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.judul-footer {
    font-weight: 600;
    padding-bottom: 5px;
}

.footer .footer1 {
    display: flex;
    width: 300px;
    flex-direction: column;
}

.footer .footer1 img {
    width: 100%;
    max-width: 300px;
}

.footer .footer1 .sosmed {
    display: flex;
    gap: 20px;
}

.footer .footer1 .sosmed a{
    font-size: 25px;
    color: white;
    text-decoration: none;
    
}

.footer .footer2 {
    display: flex;
    flex-direction: column;
}

.footer .footer2 a {
    color: white;
    text-decoration: none;
    padding-bottom: 5px;
}

.footer .footer3 {
    display: flex;
    flex-direction: column;
}

.footer .footer3 a {
    color: white;
    text-decoration: none;
    padding-bottom: 5px;
}

.footer .bottom-footer {
    background-color: black;
    color: #ffffff;
    text-align: center;
    padding: 10px;
}
.footer .bottom-footer a {
    color: white;
    text-decoration: none;
}

@media (max-width: 992px) {
    .top-footer {
        justify-content: flex-start;
        padding: 40px 30px;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .top-footer {
        flex-direction: column;
        gap: 20px;
        text-align: left;
        padding: 30px 20px;
    }

    .footer .footer1,
    .footer .footer2,
    .footer .footer3 {
        width: 100%;
    }

    .footer .footer1 img {
        max-width: 400px;
    }
}