/* Split homepage layout */
.split-container {
    display: flex;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.left-side, .right-side {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.left-side {
    background: #8a2be2; /* Purple floral tone */
}

.right-side {
    background: #2b6cb0; /* Blue steel tone */
}

/* Buttons */
.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

/* Subpage layout */
.content-page {
    font-family: Arial, sans-serif;
    padding: 40px;
    max-width: 800px;
    margin: auto;
}

h1 {
    margin-bottom: 10px;
}

h2 {
    margin-top: 30px;
}
