/* common.css */
.header-section {
    background-color: #495054; 
    color: white;             
    padding: 5px;            
    margin-left: -10px;
}

body {
    margin: 0; 
    
    font-family: Arial, Helvetica, sans-serif;
}

.content-container {
    padding: 0 0 0 10px;  /* Move the padding here */
}

.uwa-logo {
    width: auto;  
    height: 80px;
    max-width: 100%;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-left: 0;  /* Ensure no left padding */
        margin-left: 0; 
}

.text-section {
    flex: 1;
}

.images-section {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex: 1;
    justify-content: space-between;
    flex-wrap: wrap; 
}


.images-section.single-image {
    justify-content: center;
}
.images-section.single-image img {
    max-width: 100%;
    height: auto;
    
}

img {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

a img{
    text-decoration: none; 
    transition: transform 0.2s ease-in-out; 
}

a:hover img{
    transform: scale(1.05);
}


@media (max-width: 768px) {


    img {
        max-width: 90%; 
        height: auto; 
        margin-bottom: 10px;
    }

    .uwa-logo {
        height: 60px;         
        max-width: auto;     
    }

    .container {
        flex-direction: column;
        align-items: center;
        
    }

    .images-section {
        flex-direction: row; 
        gap: 10px;
        flex-wrap: wrap; 
        justify-content: center; 
    }

    .text-section {
        text-align: left; 
        width: 100%; 
    }


}
