/* Doors container styling */
.doors {
    display: flex;
    justify-content: space-between; /* Space between the door images */
    background-color: #034d8c; /* Background color */
    padding: 10px; /* Padding for the container */
    margin-top: 3px; /* Margin above the main div */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for the container */
}

/* Individual door styling */
.door {
    flex: 1; /* Equal width for each door */
    margin: 0 5px; /* Margin for spacing between images */
    width: calc(33.33% - 10px); /* Equal width with margin */
    height: auto; /* Maintain aspect ratio */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Slight shadow around each door image */
}

/* Remove left margin for the first image and right margin for the last image */
.door:first-child {
    margin-left: 0; /* No left margin for the first door */
}

.door:last-child {
    margin-right: 0; /* No right margin for the last door */
}
