.columns-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
	margin-top: 20px;
    margin-bottom: 20px;
}

.column {
    flex: 1;
    background: platinum;
    border-radius: 10px;
	box-shadow: var(--shadow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0; /* Prevents flex items from overflowing */
}

.column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Media Query for Tablets and Mobile Devices */
@media (max-width: 991px) {
    .columns-wrapper {
        flex-direction: column;
		margin-top: 10px;
		margin-bottom: 10px;
        gap: 0px; /* Reduce gap for smaller screens */
    }
    
    .column {
        width: 100%; /* Ensure full width */
        padding: 15px; /* More reasonable padding for mobile */
        flex: none; /* Disable flex grow/shrink */
    }
}