/* Global responsive images fix */
img {
    max-width: 100%;
    height: auto;
}

/* Content section images — full width, adaptive */
.content-section img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Logo — fixed height only */
.logo img {
    width: auto;
    max-width: none;
    height: 48px;
    border-radius: 0;
    margin-bottom: 0;
}

/* Hero banner image */
.welcome-section .image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

/* Media block images */
.media-block img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 0;
}

/* Footer logo */
.footer-logo img {
    width: auto;
    max-width: 160px;
    height: auto;
    border-radius: 0;
    margin-bottom: 0;
}

/* Mobile: prevent any overflow */
@media (max-width: 768px) {
    .content-section {
        overflow: hidden;
    }

    .content-section img {
        width: 100%;
        border-radius: 8px;
    }

    .welcome-section .image img {
        border-radius: 12px;
    }
}