.header-department {
    background-color: #175a87;
    overflow: hidden;
}

.custom-bg {
    background: linear-gradient(to bottom, #b6dff3, #436f96);
}

.custom-card {
    position: relative;
    font-weight: bold;
    background: linear-gradient(to left, #f1f3f1, #E3F8EF);
    background: #deefff;
    border-radius: 20px;
    padding: 12px;
}

.corner-img {
    top: 290px;
    position: absolute;
    bottom: 10px;
    width: 80px;
    right: 10px;
}

.form-check-input {
    border: 2px solid black;
}

.checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid black;
    transform: scale(1.3);
}

.custom-img {
    max-height: 120px;
    object-fit: contain;
}

.corner-img img {
    width: 80px;
}

.other-input {
    display: none;
}

#other:checked ~ .other-input {
    display: block;
}

@media (max-width: 576px) {

    .custom-card {
        padding: 8px;
    }

    .checkbox {
        transform: scale(1.1);
    }

    .custom-img {
        max-height: 100px;
    }
}