.page-card h1 {
    margin-top: 0;
    font-size: 30px;
}

.page-card img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 16px;
    margin: 35px 0;
    background-color: #f4f6f8;

    position: sticky;
    top: 25px;
    z-index: 10;
}

.page-content {
    font-size: 16px;
    line-height: 1.7;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 40px; /* mehr Abstand nach unten */
}

.pagination a,
.pagination strong {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #6fa8ff; /* weiches Blau */
    background-color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.pagination a:hover {
    background-color: #eaf2ff; /* leichtes Hover-Feedback */
}

.pagination strong {
    background-color: #6fa8ff;
    color: #ffffff;
}