@media (max-width: 768px) {
    .splash-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .splash-screen img {
        max-width: 70%;
        height: auto;
        margin-bottom: 1rem;
    }

    .splash-screen p {
        font-size: 1.1rem;
        color: #007782;
        font-weight: 500;
        font-family: sans-serif;
    }
}