html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

a, a:visited, a:hover, a:active, a:focus {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherits color from its parent */
    outline: none; /* Remove focus outline */
}

/* Styles for mobile by default */
.content-container {
    flex-direction: column-reverse;
}

.fieldset-container {
    border: 1px solid #a9b1b7 !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    padding: 5px 1px 5px 2px !important;
    flex: 3 !important;
    flex-basis: 65% !important;
    margin-right: 10px;
}

fieldset {
    border: 1px solid #a9b1b7 !important;
    border-radius: 10px !important;
    font-size: 10pt !important;
    padding: 5px 10px 5px 5px !important;
}

.borderless-textbox {
    width: 100% !important;
    border: none !important;
    outline: none !important;
    margin: 0px !important;
}

    .borderless-textbox input:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }

/* Override styles for larger screens */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .title-section {
        font-size: 2.25em !important;
    }

        .content-container {
        flex-direction: row; /* Make content side-by-side on larger screens */
    }

            .content-container .image-placeholder img {
                max-width: 100% !important;
            }



    .demo-button {
        width: 250px; /* Reset the button width to 250px on larger screens */
        margin-left: auto; /* You may want to center the button or align it. Adjust as needed. */
    }

    .deck-desktop {
        display: block !important;
    }

    .deck-mobile {
        display: none !important;
    }

    .quad-container {
        flex-direction: row !important; /* Make sections side-by-side on larger screens */
        justify-content: space-between;
    }

    .section {
        flex: 1; /* Makes each section take an equal width */
        box-sizing: border-box; /* So that padding doesn't increase width */
        padding: 10px;
    }

    .middle-content-container {
        flex-direction: row !important; /* Side by side on larger screens */
    }
        .middle-content-container .image-placeholder img {
            width: 100% !important;
            max-width: 500px !important;
        }

    .image-placeholder {
        padding-right: 20px; /* Add back the right padding on desktop */
        /* ... existing styles ... */
    }

    .text-placeholder {
        text-align: center; /* Or adjust as you see fit */
        /* ... existing styles ... */
    }

    .section:first-child::before {
        content: none !important;
    }

    .align-bottom-container {
        font-size: 2.5em !important;
    } 

}
