.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: calc(33.333% - 20px); /* Adjusts to 3 columns for desktop */
    min-width: 250px;
}

.column h3 {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
}

.tech {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.tech img {
    width: 24px;
    height: auto;
    margin-right: 10px;
}

/* Adjustments for tablet and mobile views: */
@media screen and (max-width: 1024px) {
    .column {
        /* Adjusts to 2 columns on tablet sizes */
        flex-basis: calc(50% - 20px);
    }
}

@media screen and (max-width: 768px) {
    .column {
        /* Full width for mobile sizes */
        flex-basis: 100%;
    }

    .tech {
        /* Adjust tech layout for mobile */
        flex-direction: column;
    }

    .tech img {
        margin-bottom: 5px;
        margin-right: 0;
    }
}
