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: 4rem;
    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;
}

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

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