
body {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

/* Center the content vertically and horizontally */
.legalpage-container {
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    margin-bottom: 120px;
}

/* Style the title */
.entry-title {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

/* Style the content */
.legalpage-container p {
    line-height: 1.6;
    color: #666;
}

/* Make the content responsive */
@media (max-width: 800px) {
    .legalpage-container {
        padding: 10px;
    }
}