body {
    background-color: #E6E6FA;
}

/* Make the start div a flex container */
#start {
    display: flex !important;
    gap: 20px;
    align-items: flex-start;
}

/* First modular section (main content) */
#start > section.modular-text:first-of-type {
    flex: 3 !important;
}

/* Second modular section (sidebar) */
#start > section.modular-text:last-of-type {
    flex: 1 !important;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

body.template-default .page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}