.explore-pages {
    padding: 4rem 0;
}

.explore-pages h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.explore-pages ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.explore-pages li a {
    display: block;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.explore-pages li a:hover {
    background-color: #eee;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .explore-pages {
        padding: 2rem 1rem;
    }

    .explore-pages ul {
        grid-template-columns: 1fr;
    }
}