body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

.logo-container {
    background-color: #f0f4fc;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container img {
    width: auto;
    height: 80px;
    object-fit: cover;
    display: block;
    margin: 0; 
}

.marquee-container {
    background-color: #222;
    color: white;
    padding: 10px;
    font-size: 18px;
    margin-top: 60px; 
}

.image-gallery {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 10px;
    overflow-x: auto; 
}

.image-box {
    flex: 0 0 auto; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-box img {
    width: 240px;
    height: 200px;
    object-fit: cover;
}


.footer-container {
    text-align: center;
    padding: 8px;
    background-color: #5f3c3c;
    color: white;
    margin-top: 20px; 
    width: 100%;
}

.image-text {
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
    color: #333;
}

