.site-footer {
    padding: 20px 0;
    font-size: 16px;
    color: #1b3446;
    background-color: #ffffff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.footer-intro {
    font-size: 17px;
    color: #003f53 ;
    font-weight: normal;
    margin: 5px 0;
    font-family: "Merriweather Sans", serif;
}

.footer-links {
    display: flex;
    gap: 15px;
    font-size: 16px;
    color: #003f53;
}

.footer-links span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links i {
    font-size: 18px;
    /* Larger icon size */
}

.footer-content p {
    margin: 0;
    line-height: 1.4;
    margin-top: 10px;
}

.copyright {
    font-family: "Poppins", serif;
    font-weight: 600;
    color: #003f53;
}

.footer-content a {
    text-decoration: none;
    color: #003f53 ;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    font-size: 18px;
}

.footer-content a:hover {
    color: #005f73 ;
}

.footer-content a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #005f73;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.footer-content a:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 20px 0;
        font-size: 16px;
        color: #1b3446;
        background-color: #ffffff;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
    
    .footer-content {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column; /* Menyusun elemen secara vertikal */
        align-items: center;
        gap: 10px;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .footer-intro {
        font-size: 18px;
        color: #003f53;
        font-weight: medium;
        margin: 5px 0;
        font-family: Arial, sans-serif;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column; /* Mengubah orientasi menjadi vertikal */
        gap: 10px; /* Jarak antar elemen */
        font-size: 16px;
        color: #003f53;
        align-items: center;
    }
    
    .footer-links span {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .footer-links i {
        font-size: 18px;
        /* Ukuran ikon yang lebih besar */
    }
    
    .footer-content p {
        font-weight: bold;
        margin: 0;
        line-height: 1.4;
        margin-top: 10px;
        font-family: "Signika", Arial, sans-serif;
    }
    
    .footer-content a {
        text-decoration: none;
        color: #003f53;
        font-weight: 500;
        position: relative;
        font-size: 18px;
    }
    
    .footer-content a:hover {
        color: #005f73;
    }
    
    .footer-content a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #005f73;
        transition: all 0.3s ease;
        border-radius: 5px;
    }
    
    .footer-content a:hover::after {
        width: 100%;
        left: 0;
    }
    
}
