  /* Footer */
        footer {
            background: #213648;
            color: #cfe6e6;
            padding: 60px 0 86px;
            /* extra bottom space so footer-bottom doesn't overlap */
            margin-top: 18px;
        }
        
        .logo-footer img {
            height: 32px;
        }


        footer .col {
            flex: 1;
        }

        footer .col p,
        footer li {
            font-size: 17px;
        }

        /* Footer-bottom bar (screenshot replica) */
        .footer-bottom {
            background: var(--yellow);
            padding: 14px 0;
            position: relative;
            box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04);
        }

        .footer-bottom .container {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            gap: 12px;
        }

        .footer-bottom .copyright {
            font-family: 'Georgia', serif;
            color: #0f2a30;
            font-size: 18px;
            text-align: center;
        }

        .book-appointment {
            position: absolute;
            right: 22px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--footer-bottom-blue);
            color: #fff;
            padding: 10px 16px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 8px 28px rgba(59, 92, 255, 0.18);
        }

        /* mobile: stack the button under the text and center everything */
        @media (max-width: 700px) {
            .footer-bottom .container {
                flex-direction: column;
                padding: 6px 22px;
            }

            .book-appointment {
                position: static;
                transform: none;
                margin-top: 8px;
            }

            footer {
                padding-bottom: 48px;
            }
        }