     /* Reset and full-page layout */
        html, body {
            margin: 0;
            padding: 0;
            height: 100%;
            width: 100%;            
            font-family: 'Montserrat', Sans-Serif;
        }

        /* Background image styling */
        body {
            background: url('/img/pint-finder-background.jpg') no-repeat center center fixed;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
        }

        /* Logo container */
        .logo {
            max-width: 100%;
            width: 300px !important;;
            width: 80%;
        }

        /* Optional overlay for contrast */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        /* Center content on top of overlay */
        .content {
            position: relative;
            z-index: 2;
        }

        /* Optional tagline */
        .tagline {
            font-size: 1.2rem;
            margin-top: 1rem;
            letter-spacing: 1px;
            font-weight:bold;
        }

        .subtext {
            font-size: 1rem;
            margin-top: 0.5rem;
            line-height: 1.5;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: #fff;
            opacity: 0.95;
        }