
    :root {
        --yellow: #ffef6a;
        --teal: #17b2a3;
        --teal-strong: #13967f;
        --navy: #1f3b48;
        --deep: #0f2a30;
        --muted: #6c7a7f;
        --accent: #f6e05e;
        --white: #ffffff;
        --card-shadow: 0 16px 40px rgba(7, 22, 25, 0.22);
        --footer-bottom-blue: #3b5cff;
    }

    * {
        box-sizing: border-box;
    }

    html,
    body {
        height: 100%;
        font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
        margin: 0;
        color: #113;
        line-height: 1.55;
        background: #fff;
        font-size: 19px;
    }

    /* Top thin bar */
    .thin-top {
        height: 40px;
        background: var(--yellow);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
        display: flex;
        align-items: center;
        font-size: 0;
    }

    .thin-top-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0;
    }

    .thin-top-left {
        flex: 1;
    }

    .thin-top-right {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto;
    }

    .ticon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 24px;
        border-radius: 6px;
        text-decoration: none;
        background: #11119626;
        transition: transform .12s ease, background .12s ease;
        padding: 4px;
        box-sizing: border-box;
    }

    .ticon:hover,
    .ticon:focus {
        transform: translateY(-2px);
        background: rgba(0, 0, 0, 0.08);
        outline: none;
    }

    .ticon svg {
        display: block;
        width: 18px;
        height: 18px;
    }

    header {
        background: var(--white);
        border-bottom: 1px solid rgba(18, 46, 55, 0.04);
    }

    .container {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 22px;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .logo img {
        height: 42px;
    }

    .logo .brand {
        font-weight: 800;
        color: var(--teal);
        letter-spacing: 0.6px;
        font-size: 24px;
    }

    /* NAVIGATION + DROPDOWN */
    nav {
        position: relative;
    }

    .nav-list {
        display: flex;
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
        align-items: center;
    }

    .nav-list a,
    .nav-list button {
        color: var(--deep);
        text-decoration: none;
        font-size: 18px;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .nav-list a:hover,
    .nav-list button:hover {
        color: var(--teal-strong);
    }

    /* dropdown container */
    .dropdown {
        position: relative;
    }

    .dropdown-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0;
        text-decoration: none;
    }

    .dropdown-arrow {
        font-size: 14px;
        line-height: 1;
        margin-left: 2px;
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        min-width: 260px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 12px 36px rgba(7, 22, 25, 0.12);
        padding: 10px 6px;
        display: none;
        z-index: 50;
        pointer-events: auto;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 14px;
        font-size: 16px;
        color: #1b2b2b;
        text-decoration: none;
        border-radius: 6px;
    }

    .dropdown-menu a:hover {
        background: rgba(20, 160, 145, 0.06);
        color: var(--teal-strong);
    }

    /* View All link in dropdown */
    .dropdown-menu .view-all {
        font-weight: 700;
        color: var(--teal-strong) !important;
        background: rgba(20, 160, 145, 0.1) !important;
        margin-bottom: 8px;
    }

    .dropdown-menu .view-all:hover {
        background: rgba(20, 160, 145, 0.15) !important;
    }

    .dropdown-divider {
        height: 1px;
        background: rgba(0, 0, 0, 0.1);
        margin: 8px 14px;
    }

    /* show menu when .open class applied */
    .dropdown.open .dropdown-menu {
        display: block;
    }

    /* Mobile nav toggle */
    .nav-toggle {
        display: none;
        font-size: 22px;
        padding: 8px 12px;
        background: rgba(0, 0, 0, 0.02);
        border-radius: 8px;
        cursor: pointer;
    }

    /* Responsive adjustments */
    @media (max-width: 1100px) {
        .nav-toggle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .nav-list {
            position: absolute;
            top: calc(100% + 10px);
            right: 22px;
            background: #fff;
            box-shadow: 0 10px 42px rgba(7, 22, 25, 0.12);
            border-radius: 10px;
            padding: 12px;
            flex-direction: column;
            gap: 6px;
            display: none;
            width: 220px;
        }

        .nav-list.show {
            display: flex;
        }

        .nav-list a,
        .nav-list button {
            font-size: 16px;
        }

        .dropdown-menu {
            position: relative;
            top: 0;
            left: 0;
            box-shadow: none;
            background: transparent;
            padding: 0;
            display: none;
        }

        .dropdown.open .dropdown-menu {
            display: block;
        }
        
        .dropdown-divider {
            margin: 8px 0;
        }
    }

    /* Mobile full-screen menu overlay */
    .mobile-nav-close-wrapper {
        display: none;
    }

    @media (max-width: 1100px) {
        .header-inner {
            position: relative;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
        }

        .nav-toggle {
            margin-left: auto;
            order: 2;
            z-index: 1300;
            position: relative;
            right: 0;
        }

        nav {
            order: 3;
        }
    }

    @media (max-width: 1100px) {
        .nav-list {
            position: fixed;
            inset: 0;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 55%;
            display: none;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            gap: 0;
            padding: 24px;
            background: #fff;
            z-index: 1200;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .nav-list.show {
            display: flex;
        }

        .nav-list .mobile-nav-close-wrapper {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding-bottom: 8px;
        }

        .mobile-nav-close {
            background: transparent;
            border: none;
            font-size: 30px;
            line-height: 1;
            padding: 6px 10px;
            cursor: pointer;
            color: #0f2a30;
            font-weight: 700;
        }

        .nav-list>li {
            list-style: none;
            border-bottom: 1px solid rgba(6, 18, 20, 0.04);
        }

        .nav-list>li>a,
        .nav-list>li>button {
            display: block;
            padding: 22px 6px;
            font-size: 16px;
            font-weight: 600;
            color: #102C34;
            text-decoration: none;
            text-align: left;
            width: 100%;
            background: transparent;
        }

        .nav-list>li>a:hover,
        .nav-list>li>button:hover,
        .nav-list>li>a:focus,
        .nav-list>li>button:focus {
            background: rgba(19, 150, 127, 0.04);
            color: var(--teal-strong);
            outline: none;
        }

        .dropdown .dropdown-menu {
            display: none;
            padding-left: 12px;
            background: transparent;
            box-shadow: none;
            margin-bottom: 8px;
        }

        .dropdown.open .dropdown-menu {
            display: block;
        }

        .dropdown .dropdown-menu a {
            padding: 12px 8px;
            font-size: 16px;
            color: #1b2b2b;
        }
        
        .dropdown-menu .view-all {
            margin-bottom: 4px;
        }

        .nav-toggle {
            z-index: 1250;
        }
    }

    @media (max-width: 520px) {
        html,
        body {
            font-size: 15px;
        }

        .thin-top-right {
            gap: 6px;
        }

        .thin-top {
            display: none;
            height: 36px;
        }

        .ticon {
            height: 20px;
        }

        .header-inner {
            padding: 10px 0;
        }

        .logo img {
            height: 36px;
        }
    }

    /* Footer styles (simplified) */
    footer {
        background: #213648;
        color: #cfe6e6;
        padding: 60px 0 86px;
        margin-top: 18px;
    }
    
     .quick-link {
            
            display: block;
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;

            
        }

    .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);
    }

    @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;
        }
    }
    
    
    .quick-links {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

/* Social container */
.footer-social {
    display: flex;
    gap: 10px;
}

/* Icon box */
.footer-social-link {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;

    transition: all 0.2s ease;
}

/* SVG size */
.footer-social-link svg {
    width: 16px;
    height: 16px;
}

/* Force white icons */
.footer-social-link svg path {
    fill: #ffffff;
}

/* Hover */
.footer-social-link:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Accessibility */
.footer-social-link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-social-link {
        width: 30px;
        height: 30px;
    }

    .footer-social-link svg {
        width: 14px;
        height: 14px;
    }
}

    
 