body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.split-container {
    display: flex;
    height: 100vh;
}

/* Shared overlay effect */
.overlay {
    position: relative;
}

.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* Dark overlay for readability */
    z-index: 1;
}

.overlay * {
    position: relative;
    z-index: 2;
}

/* LEFT SIDE — Floral PNG background */
.left-side {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;

    background-image: url("Floral Arrayed Providence.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* RIGHT SIDE — Sharpening PNG background */
.right-side {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;

    background-image: url("Knife Sharpening Logo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.page-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
}
