 /* --- Base Styles --- */
        html {
            height: 100%;
        }
        body {
            height: 100%;
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: #FEF9E7; /* Light creamy background */
            color: #34495E; /* Dark grey for text */
        }

        /* --- Content Container --- */
        .container {
            max-width: 600px;
            padding: 20px;
        }

        /* --- Logo --- */
        .logo {
            width: 120px;
            height: auto;
            margin-bottom: 2rem;
        }

        /* --- Typography --- */
        h1 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #D35400; /* A deep orange color */
        }

        p {
            font-size: 1.15rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        /* --- Footer --- */
        footer {
            font-size: 0.9rem;
            color: #7F8C8D; /* Lighter grey for footer */
        }
        
        /* --- Responsive Adjustments --- */
        @media (max-width: 600px) {
            h1 {
                font-size: 2rem;
            }
            p {
                font-size: 1rem;
            }
        }