<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
        html, body {
            height: 100%;
            margin: 0;
            display: flex;
            flex-direction: column;
        }

        .container {
            flex: 1;
        }
        /* Logo Styling */
        .logo-container {
            display: flex;               /* Enable flexbox */
            justify-content: center;     /* Center the logo horizontally */
            align-items: center;         /* Align the logo vertically (optional) */
            margin-top: 30px;            /* Add space above the logo */
            margin-bottom: 20px;         /* Add space below the logo */
        }
        
        .logo {
            max-width: 200px;            /* Limit the logo width */
            height: auto;                /* Maintain the aspect ratio */
        }


        .neighborhood-links {
            margin-top: 30px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .neighborhood-links h2 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
        }

        .neighborhood-links ul {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 0;
            list-style: none;
        }

        .neighborhood-links li {
            text-align: center;
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .neighborhood-links li a {
            display: block;
            text-decoration: none;
            font-size: 1rem;
            color: black;
            font-weight: 600;
            text-align: center;
            padding: 10px;
            width: 100%;
            box-sizing: border-box;
        }

        .neighborhood-links li:hover {
            background-color: #5ac3cd;
            color: white;
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
        }

        .neighborhood-links li a:hover {
            color: white;
        }

        footer {
            background-color: #f8f9fa;
            padding: 20px 0; /* Increased padding for better spacing */
            text-align: center;
            font-size: 0.875rem;
            color: #000000;
            margin-top: 30px;
        }
        
        footer a {
            text-decoration: none;
            color: #007bff; /* Blue color for the link */
            font-weight: 500; /* Slightly bold for visibility */
            transition: color 0.3s ease; /* Smooth transition on hover */
        }
        
        footer a:hover {
            color: #0056b3; /* Darker blue on hover */
        }
        
        footer p {
            margin: 0; /* Remove extra margin for the text */
        }
        
        /* Add margin for spacing between copyright and privacy policy */
        footer p + p {
            margin-top: 10px; /* Adjust if needed */
        }

        /* Media Query for mobile screens */
        @media (max-width: 767px) {
            .neighborhood-links ul {
                grid-template-columns: repeat(2, 1fr);
            }
        }</pre></body></html>