.subpages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    list-style: none;
    margin-top: 20px;
  }

  .subpages li {
    flex: 1 1 calc(25% - 20px);
    max-width: 200px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }

  .subpages li:hover {
    transform: translateY(-5px);
  }

  .image-container {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 2px solid #ddd;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .subpages span {
    display: block;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
  }