 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
            margin: 0;
            color: #333;
            line-height: 1.6;
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            background: #0a4275;
            color: white;
        }

        nav h1 {
            margin: 0;
            font-size: 24px;
        }

        nav img {
            height: 80px;
            width: auto;
        }

        main {
            max-width: 900px;
            margin: 30px auto;
            padding: 0 16px;
        }

        h2 {
            color: #0a4275;
            margin-top: 30px;
            font-size: 20px;
        }

        ul {
            list-style: none;
            padding-left: 0;
        }

        ul li {
            margin: 6px 0;
        }

        ul li a {
            text-decoration: none;
            color: #0a4275;
        }

        ul li a:hover {
            text-decoration: underline;
        }

        /* Footer layout */
        .site-footer {
            background-color: #0a4275;
            color: #fff;
            padding: 24px 16px;
        }

        .site-footer a {
            color: rgb(228, 212, 25);
            text-decoration: none;
        }

        .site-footer a:hover {
            text-decoration: underline;
        }

        /* Two-column flex: logo left, content right */
        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        /* Logo sizing */
        .footer-logo img {
            display: block;
            width: auto;
            height: 80px;
            /* tweak if you want larger/smaller */
            object-fit: contain;
        }

        /* Right column */
        .footer-right {
            text-align: right;
            /* pushes text to the opposite side of the logo */
        }

        .footer-links {
            margin: 0 0 6px 0;
            font-weight: 600;
        }

        .footer-powered {
            margin: 0;
            opacity: .95;
        }

        /* Mobile: stack vertically, center for readability */
        @media (max-width: 768px) {
            .footer-inner {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-right {
                text-align: center;
            }

            .footer-logo img {
                height: 72px;
            }
        }