*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    min-height:100vh;
    background:url('image/factory-bg.jpg') center center/cover no-repeat;
    position:relative;
    overflow:hidden;
}

/* Dark overlay for better visibility */
.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:1;
}

.container{
    position:relative;
    z-index:2;
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.coming-soon{
    max-width:700px;
    width:90%;
    height:auto;
    display:block;
}

/* Tablet */
@media (max-width:768px){
    .coming-soon{
        width:95%;
        max-width:500px;
    }
}

/* Mobile */
@media (max-width:480px){
    .coming-soon{
        width:100%;
        max-width:350px;
    }
}