/* Footer Logo Consistent Sizing Fix
 * Purpose: Make footer logo size consistent across all pages
 * Created to resolve size differences between poola.php and other pages
 */

/* Override all previous footer logo styles with consistent sizing */
.footer-logo img,
.footer-area .footer-logo img {
    width: 200px !important;
    height: auto !important;
    max-width: 200px !important;
    display: inline-block;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .footer-logo img,
    .footer-area .footer-logo img {
        width: 150px !important;
        max-width: 150px !important;
    }
}

@media (max-width: 480px) {
    .footer-logo img,
    .footer-area .footer-logo img {
        width: 120px !important;
        max-width: 120px !important;
    }
}