/* Default size for larger screens (desktop) */
.brand img {
    max-width: 180px; /* Adjust desktop size */
    height: auto;
}

/* Adjust size for tablets */
@media (max-width: 1024px) {
    .brand img {
        max-width: 180px; /* Adjust tablet size */
    }
}

/* Adjust size for mobile */
@media (max-width: 768px) {
    .brand img {
        max-width: 180px; /* Adjust mobile size */
    }
}
