 .developmental-grid-container {
    display: flex;
    justify-content: center; /* Center the content horizontally */
  }

  .developmental-grid-tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
  }

  .developmental-tile {
    width: calc(33.33% - 10px);
    margin: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border-radius: 10px;
    transition: transform 0.2s;
  }

  .developmental-tile:hover {
    transform: scale(1.05);
  }

  .developmental-icon {
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.5;
  }

  /* You can add specific styles for each tile if needed */
  .developmental-tile:nth-child(odd) {
    background-color: #f2f2f2;
  }

  .developmental-tile:nth-child(even) {
    background-color: #e0e0e0;
  }
  