body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--background-light);
}

.page-header h1 {
    font-size: 2rem;
    color: var(--text-color);
}

.page-content {
    flex: 1;
    margin-bottom: 5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 100%;
    position: relative; /* Required for the ::before pseudo-element */
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.text-body {
    margin-top: 0;
}

.page-content::before {
    background-color: white;
    content: '';
    position: absolute;
    top: 0;
    bottom: -1.2rem;
    left: -1.5rem;
    right: -1.5rem;
    z-index: -1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.padding-container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.content-block{
    max-width: 34rem;
    margin-bottom: 2rem;
}

.section-divider {
    height: 2px;
    background-color: var(--light-grey-background);
    border: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}