/******************************************************************/
/******************************************************************/
/* Move In Move Out Page */
/******************************************************************/
/******************************************************************/

/* Document Storage Container Styles - same blue box from move-in-out page */
.document-storage-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.document-storage-content {
    flex: 1;
    min-width: 300px;
}

.document-storage-image {
    flex-shrink: 0;
}

    .document-storage-image img {
        max-width: 280px;
        width: 280px;
        height: auto;
        border-radius: 8px;
    }

/* Mobile styles */
@media (max-width: 767px) {
    .document-storage-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem !important;
        margin: 1rem 0 !important;
    }

    .document-storage-content {
        order: 2;
        text-align: left;
    }

    .document-storage-image {
        order: 1;
        text-align: center;
        width: 100%;
    }

        .document-storage-image img {
            max-width: 200px;
            width: 200px;
        }
}