@media (min-width: 769px) {
  .govgr-main-wrapper p {
    font-size: large !important;  
  }
  .govgr-main-wrapper p span {
    font-size: inherit; 
  }
}
 .nav-container {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .desktop-logo {
            flex-shrink: 0;
        }

        .municipality-logo {
            height: 45px;
            width: auto;
            display: block;
            transition: opacity 0.3s ease;
        }

        .nav-list {
            display: flex;
            list-style: none;
            margin: 0;
            align-items: center;
            gap: 0;
        }

        .nav-list li {
            margin: 0 0 0 1px;
        }

        .nav-list a {
            display: flex;
            align-items: center;
            padding: 12px 24px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            border-right: 1px solid #eee;
        }

        .nav-list a:hover {
            background: #f8f9fa;
            color: #007bff;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            gap: 4px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            width: 100%;
            background: #fff;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            z-index: 999;
            max-height: calc(100vh - 70px);
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-logo-section {
            padding: 20px;
            border-bottom: 2px solid #f0f0f0;
            background: #fafafa;
            text-align: center;
        }

        .mobile-logo-section a {
            display: inline-block;
        }

        .mobile-logo {
            height: 50px;
            width: auto;
        }

        .mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-list li {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-nav-list a {
            display: block;
            padding: 18px 20px;
            text-decoration: none;
            color: #333;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .mobile-nav-list a:hover,
        .mobile-nav-list a:active {
            background: #f8f9fa;
            color: #007bff;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) duplicate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        body.menu-open {
            overflow: hidden;
        }

        @media (max-width: 740px) {
            .nav-list,
            .desktop-logo {
                display: none;
            }

            .hamburger {
                display: flex;
            }
        }

        @media (min-width: 741px) {
            .mobile-menu {
                display: none;
            }
        }

        @media (min-width: 1200px) {
            .nav-list a {
                padding: 14px 28px;
                font-size: 16px;
            }
        }