.container {
display: grid;
grid-template-columns: repeat(3, 1fr); /* Creates three equal-width columns */
gap: 20px; /* Adjust the space between columns */
}
.column {
background-color: #f9f9f9; /* Light background color */
padding: 20px;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}