.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    min-height: 200px;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

.numbered-cell {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
}

.cell-number {
    font-size: 4em;
    font-weight: bold;
    color: #000000;
    margin-bottom: 0.5em;
}

.cell-text {
    color: #666;
    font-size: 1.2em;
}


/* ...existing code... */

.numbered-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.numbered-cell a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: background-color 0.3s;
}

.numbered-cell:hover {
    background-color: #e0e0e0;
    cursor: pointer;
}