body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.footer {
    background: linear-gradient(90deg, #119fb5, #07afb1);
    display: flex;
    justify-content: space-around; 
    align-items: center;
    padding: 20px; 
    width: 100%;
    color: bisque;
    box-sizing: border-box;

    /* --- PERUBAHAN PENTING --- */
    /* HAPUS: position: fixed; */
    /* HAPUS: bottom: 0; */
    
    margin-top: auto; /* Memastikan footer ada di akhir container flex */
}

/* Bagian Kiri: Sosmed */
.sosmed {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px; /* Jarak antar icon */
    align-items: center;
}

.sosmed h3 {
    margin-right: 10px; /* Jarak antara tulisan Follow Us dengan Icon */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: bisque;
    font-size: 16px; /* Ukuran font disesuaikan */
}

/* PERBAIKAN UTAMA DI SINI */
.icon {
    width: 30px; /* Ukuran fix agar tidak meledak */
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s;
    display: block; /* Menghilangkan gap misterius di bawah gambar */
}

.sosmed a:hover .icon {
    transform: scale(1.2); /* Efek zoom saat di-hover */
}

/* Bagian Kanan: Contact Us */
.contactus {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: bisque;
    display: flex;
    flex-direction: column; /* Agar judul dan email bertumpuk rapi */
    align-items: flex-end; /* Rata kanan */
    font-size: 14px;
}

.contactus h3 {
    margin: 0 0 5px 0;
}

.contactus p {
    margin: 0;
}