 /* --- General Body Styling --- */
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f4f4f9; /* Light, soft background */
            color: #333;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
        }

        /* --- Main Content Container --- */
        .container {
            background-color: #ffffff;
            padding: 40px 50px;
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            max-width: 550px;
            width: 100%;
        }

        /* --- Logo Styling --- */
        .logo {
            max-width: 150px; /* Adjust size as needed */
            margin-bottom: 25px;
        }

        /* --- Typography --- */
        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: #2c3e50; /* A dark, muted blue-grey */
            margin: 0 0 15px 0;
        }

        p {
            font-size: 1rem;
            color: #555;
            line-height: 1.7;
            margin: 15px 0;
        }

        /* --- Button Styling --- */
        .home-button {
            display: inline-block;
            margin-top: 25px;
            padding: 12px 30px;
            background-color: #2980b9; /* A professional blue */
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            border-radius: 5px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .home-button:hover {
            background-color: #3498db;
            transform: translateY(-3px); /* Subtle lift effect */
        }

        /* --- Responsive Adjustments for Mobile --- */
        @media (max-width: 600px) {
            .container {
                padding: 30px 25px;
            }

            h1 {
                font-size: 2.2rem;
            }

            p {
                font-size: 0.95rem;
            }
        }