body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

/* Container to hold all three sections side-by-side */
.sections {
    display: flex;
    gap: 20px;          /* space between the boxes */
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
}

/* Style for each box */
.sections > div {
    border: 1px solid #ccc;
    padding: 15px;
    width: 250px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

h2 {
    margin-top: 0;
}
h1 {
    text-align: center;
}