body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.bg-split {
    display: flex;
    height: 100%;
}

.split-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.split-side:hover {
    flex: 1.2;
}

.split-left {
    background-color: #ff0083;
    /* Individual Pink */
    color: white;
}

.split-right {
    background-color: #0065d8;
    /* Corporate Blue */
    color: white;
}

.btn-choice {
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 1.5em;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-choice:hover {
    background: white;
    color: #333;
    text-decoration: none;
    transform: scale(1.1);
}

h1 {
    font-size: 3em;
    font-weight: 700;
}

p {
    font-size: 1.2em;
    max-width: 80%;
    text-align: center;
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: white;
    padding: 10px 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .logo-container {
        display: none !important;
    }
    .bg-split {
        flex-direction: column;
    }
    .split-side {
        padding: 40px 10px;
    }
    .split-side h1 {
        font-size: 2em;
    }
    .btn-choice {
        padding: 10px 20px;
        font-size: 1.2em;
    }
}