/* Gaya umum kotak masalah */
.box-masalah {
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 250px;
}

.box-masalah:hover {
    transform: translateY(-5px);
}

.same-size {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Saiz ikon */
.img-masalah {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1366px) {
    .container {
        max-width: 85%;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 90%;
    }
    .box-masalah {
        padding: 30px;
    }
    .same-size {
        height: 230px;
    }
    .img-masalah {
        width: 90px;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
    .box-masalah {
        padding: 20px;
    }
    .same-size {
        height: 200px;
    }
    .img-masalah {
        width: 80px;
    }
}
