        :root {
            --primary-color: #005a9c;
            --secondary-color: #333;
            --background-color: #f0f2f5;
            --card-background: #ffffff;
            --text-color: #333;
            --header-height: 60px;
            --accent-color: #ff8a00;
            --muted-color: #6b7280;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(1200px 600px at 10% -10%, #e6f1ff 0%, rgba(230, 241, 255, 0) 60%),
                        linear-gradient(180deg, #f9fbff 0%, var(--background-color) 40%);
            color: var(--text-color);
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
        }

        .top-bar {
            background-color: var(--secondary-color);
            color: white;
            padding: 0.5rem 0;
            text-align: center;
            font-size: 0.9em;
        }

        .announcement-strip {
            background: var(--primary-color);
            color: #ffffff;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .announcement-track {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 0.6rem 0;
            width: max-content;
            animation: announcementSlide 26s linear infinite;
        }

        .announcement-item {
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0 10px;
            font-weight: 600;
        }

        .announcement-item span {
            font-weight: 400;
            opacity: 0.9;
        }

        @keyframes announcementSlide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .top-bar .social-icons a, .top-bar .contact-info span {
            color: white;
            text-decoration: none;
            margin: 0 12px;
            transition: color 0.3s;
        }
        
        .top-bar .social-icons a:hover {
            color: var(--primary-color);
        }

        .top-bar i {
            margin-right: 5px;
        }

        .header {
            width: 100%;
            height: var(--header-height);
            background-color: #2d6fb6;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
            display: flex;
            justify-content: center;
            z-index: 1005;
            position: sticky;
            top: 0;
        }

        .header .logo {
            height: 56px;
            padding-right: 10px;
        }

        .header-container {
            width: 100%;
            max-width: 1400px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
            position: relative;
            z-index: 1006;
        }

        .header nav {
            background: transparent;
            padding: 0;
            border-radius: 0;
        }
        .header nav a {
            color: #ffffff !important;
            text-decoration: none;
            font-weight: 600;
            padding: 0.35rem 0.6rem;
            border-radius: 6px;
            margin-left: 0.4rem;
            transition: background-color 0.3s, color 0.3s;
            font-size: 0.98rem;
            text-shadow: none;
        }

        .header nav a:nth-of-type(1) { color: #0f766e; }
        .header nav a:nth-of-type(2) { color: #1d4ed8; }
        .header nav a:nth-of-type(3) { color: #b45309; }
        .header nav a:nth-of-type(4) { color: #15803d; }
        .header nav a:nth-of-type(5) { color: #be185d; }
        .header nav a:nth-of-type(6) { color: #7c3aed; }
        .header nav a:nth-of-type(7) { color: #0f172a; }
        .header nav a:nth-of-type(8) { color: #c026d3; }

        .header nav a:hover, .header nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }

        .header nav a.jobs-link {
            background: #ffffff;
            color: var(--primary-color) !important;
            font-weight: 800;
            border-radius: 999px;
            padding: 0.32rem 0.7rem;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
        }

        .header nav a.jobs-link:hover {
            background: #e6f1ff;
            color: var(--primary-color) !important;
        }
        .header nav a.who-link {
            font-size: 0.75rem;
            padding: 0.25rem 0.4rem;
        }
        .who-strip {
            background: #e5e7eb;
            border-bottom: 1px solid #cbd5f5;
            text-align: center;
            padding: 6px 10px;
            font-size: 0.85rem;
            transform-origin: center;
            animation: whoStripFade 0.6s ease-out, whoStripPulse 5s ease-in-out 1s infinite;
        }
        .who-strip a {
            color: #047857;
            text-decoration: none;
            font-weight: 700;
        }
        .who-strip a:hover {
            color: #065f46;
        }

        @keyframes whoStripFade {
            from {
                opacity: 0;
                transform: translateY(-6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes whoStripPulse {
            0%, 92%, 100% {
                transform: scale(1);
            }
            96% {
                transform: scale(1.03);
            }
        }
        .who-strip a:hover {
            text-decoration: underline;
        }

        @keyframes softFade {
            from {
                opacity: 0;
                transform: translateY(6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .ad-banner-container {
            display: flex;
            justify-content: center;
            background-color: #e9ecef;
            padding: 20px 0;
            margin-bottom: 20px;
        }

        .ad-banner-wrapper {
            display: flex;
            width: 100%;
            max-width: 1400px;
            gap: 20px;
            padding: 0 20px;
        }

        .ad-banner {
            flex: 1;
            background-color: #fff;
            overflow: hidden; /* To contain the image */
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            animation: softFade 0.45s ease both;
        }

        .ad-banner img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            height: 100%;
            min-height: 150px;
        }
        
        .main-content {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            text-align: left;
            padding-top: 0;
        }

        .main-content h1 {
            font-size: 3rem;
            color: var(--primary-color);
        }

        .main-content p {
            font-size: 1.2rem;
            margin-top: 1rem;
        }

        .services-section {
            background-color: var(--primary-color);
            padding: 1rem 10px;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .services-section h2 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-explainer {
            display: none;
            background: #ffffff;
            border-radius: 10px;
            padding: 12px 14px;
            margin: 0 auto 14px;
            max-width: 720px;
            text-align: left;
            color: #102a43;
            box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
            position: relative;
        }

        .service-explainer-item {
            display: none;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .service-explainer-close {
            position: absolute;
            top: 8px;
            right: 10px;
            border: none;
            background: #0b5ea8;
            color: #ffffff;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            font-size: 1.1rem;
            cursor: pointer;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(11, 94, 168, 0.35);
        }

        .services-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            padding: 10px;
        }

        .services-accordion {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            gap: 12px;
        }

        .service-tab {
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
            overflow: hidden;
            text-align: left;
        }

        .service-tab summary {
            list-style: none;
            cursor: pointer;
            padding: 14px 18px;
            font-weight: 700;
            color: #102a43;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            background: #f8fbff;
        }

        .service-tab summary::after {
            content: "+";
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .service-tab[open] summary::after {
            content: "\2013";
        }

        .service-tab summary::-webkit-details-marker {
            display: none;
        }

        .service-panel {
            padding: 14px 18px 18px;
            color: #1f2937;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .service-placeholder {
            color: var(--muted-color);
            font-style: italic;
        }

        .service-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.14);
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 600;
            text-align: center;
            line-height: 1.2;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .featured-properties {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 0;
            padding: 0;
        }

        .jobs-showcase {
            margin: 1.5rem 0 2rem;
            padding: 0 10px;
        }

        .jobs-showcase-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 1.2rem;
        }

        .jobs-showcase-header h2 {
            font-family: "Playfair Display", serif;
            font-size: 2rem;
            color: #0f172a;
        }

        .jobs-showcase-header p {
            color: var(--muted-color);
            max-width: 560px;
            margin-top: 0.4rem;
        }

        .jobs-showcase-link {
            text-decoration: none;
            background: var(--primary-color);
            color: #ffffff;
            font-weight: 600;
            padding: 0.55rem 1rem;
            border-radius: 8px;
            box-shadow: 0 8px 18px rgba(0, 90, 156, 0.2);
        }

        .jobs-chaos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px;
        }

        .job-card {
            background: var(--card-background);
            border-radius: 12px;
            padding: 16px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            animation: softFade 0.45s ease both;
        }

        .job-card::before {
            content: none;
        }

        .job-card h3 {
            font-size: 1.05rem;
            color: #0f172a;
            margin-bottom: 0.4rem;
        }

        .job-card .job-meta {
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 0.9rem;
            color: #475569;
        }

        .job-card .job-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .job-card .job-pill {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 700;
            background: rgba(0, 90, 156, 0.12);
            color: var(--primary-color);
            margin-top: 10px;
        }

        .job-card .job-actions {
            display: flex;
            gap: 10px;
            margin-top: 12px;
        }

        .job-card .job-actions a {
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 0.45rem 0.9rem;
            border-radius: 10px;
            background: var(--primary-color);
            color: #ffffff;
        }

        .job-card .job-actions a.secondary {
            background: #e6f1ff;
            color: var(--primary-color);
        }

        .job-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
        }

        .job-card-taken .job-pill {
            background: #fee2e2;
            color: #b91c1c;
        }

        .job-card-empty {
            text-align: center;
            padding: 24px;
            color: var(--muted-color);
        }

        .jobs-items-separator {
            border: none;
            border-top: 1px solid rgba(0, 90, 156, 0.2);
            margin: 1.5rem 10px;
        }

        .property-card {
            background-color: var(--card-background);
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            overflow: hidden; 
            width: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            animation: softFade 0.45s ease both;
        }

        @media (prefers-reduced-motion: reduce) {
            .ad-banner,
            .job-card,
            .property-card {
                animation: none;
            }
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .property-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .property-details {
            padding: 1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .property-details .location {
            font-size: 0.9rem;
            color: var(--secondary-color);
            margin-bottom: 0.25rem;
        }

        .property-details .price {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .property-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: auto;
            gap: 10px;
        }

        .property-buttons a {
            text-decoration: none;
            padding: 0.6rem;
            font-size: 0.9rem;
            border-radius: 5px;
            text-align: center;
            flex: 1;
            margin: 0;
            transition: background-color 0.3s;
        }

        .btn-view {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-view:hover {
            background-color: #004a8c;
        }

        .btn-call {
            background-color: #28a745;
            color: white;
        }

        .btn-call:hover {
            background-color: #218838;
        }

        .btn-call i {
            margin-right: 5px;
        }

        .category-strip {
            max-width: 1400px;
            margin: 1.5rem auto 1.5rem;
            padding: 0 20px;
        }

        .category-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 1rem;
        }

        .category-header h2 {
            font-family: "Playfair Display", serif;
            font-size: 2rem;
            color: #102a43;
        }

        .category-header p {
            color: var(--muted-color);
            max-width: 520px;
        }

        .category-chips {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 12px;
        }

        .category-chip {
            background: var(--card-background);
            border-radius: 14px;
            padding: 12px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(0, 90, 156, 0.1);
            box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
            font-weight: 600;
            color: #102a43;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .category-chip i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .category-chip.active {
            border-color: rgba(0, 90, 156, 0.5);
            box-shadow: 0 10px 24px rgba(0, 90, 156, 0.18);
            transform: translateY(-1px);
        }

        .category-chip:focus-visible {
            outline: 2px solid rgba(0, 90, 156, 0.4);
            outline-offset: 2px;
        }

        .mobile-special-ads {
            display: none;
            max-width: 1400px;
            margin: 0 auto 1.5rem;
            padding: 0 20px;
        }

        .mobile-special-ads-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.75rem;
        }

        .mobile-special-ads-header h3 {
            font-size: 1.1rem;
            color: #102a43;
            font-weight: 700;
        }

        .mobile-special-ads-header button {
            background: transparent;
            border: none;
            color: var(--muted-color);
            font-size: 1rem;
            cursor: pointer;
        }

        .mobile-special-ads-track {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 6px;
            scroll-snap-type: x mandatory;
        }

        .mobile-special-ads-track::-webkit-scrollbar {
            height: 6px;
        }

        .mobile-special-ads-track::-webkit-scrollbar-thumb {
            background: rgba(0, 90, 156, 0.3);
            border-radius: 999px;
        }

        .mobile-special-ad {
            min-width: 240px;
            background: var(--card-background);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
            scroll-snap-align: start;
        }

        .mobile-special-ad img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            display: block;
        }

        @media (min-width: 768px) {
            .featured-properties {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 25px;
            }
        }

        /* New styles for Achievements Table */
        .achievements-section {
            background-color: var(--card-background);
            padding: 2rem;
            margin: 2rem 10px;
            border-radius: 15px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .achievements-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .achievements-table {
            width: 80%;
            margin: 0 auto;
            border-collapse: collapse;
            margin-top: 1.5rem;
        }

        .achievements-table th, .achievements-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }

        .achievements-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: bold;
        }

        .achievements-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }

        .achievements-table tr:hover {
            background-color: #ddd;
        }

        /* New styles for Workers Section */
        .workers-section {
            background-color: var(--card-background);
            padding: 2rem;
            margin: 2rem 10px;
            border-radius: 15px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .workers-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .worker-list {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            width: 60%;
        }

        .worker-list li {
            background-color: #f9f9f9;
            margin-bottom: 10px;
            padding: 15px;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .worker-list li span {
            font-size: 1.1rem;
            color: var(--secondary-color);
        }

        .worker-list li .worker-name {
            font-weight: bold;
        }

        .worker-list li .worker-number {
            color: var(--primary-color);
        }

        /* Footer Styles */
        .site-footer {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 2rem 1rem;
            font-size: 0.9rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
        }

        .footer-section h3 {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-bottom: 2px solid rgba(255,255,255,0.2);
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .footer-section ul li a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
        }

        .footer-section ul li a:hover,
        .footer-section ul li a:focus-visible {
            text-decoration: underline;
        }

        .footer-section p {
            margin-bottom: 0.8rem;
            opacity: 0.9;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-section .contact-link {
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .footer-section .contact-link:hover,
        .footer-section .contact-link:focus-visible {
            text-decoration: underline;
        }

        .footer-search {
            display: flex;
            gap: 5px;
            margin-top: 10px;
        }

        .footer-search input {
            padding: 8px;
            border: none;
            border-radius: 4px;
            flex: 1;
        }

        .footer-search button {
            padding: 8px 12px;
            background-color: #003087;
            color: white;
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 4px;
            cursor: pointer;
        }

        /* Footer Search Results Styles */
        .footer-search-container {
            position: relative;
        }
        
        .search-results-dropdown {
            position: absolute;
            bottom: 100%;
            left: 0;
            width: 100%;
            background: white;
            border: 1px solid #ccc;
            border-radius: 4px;
            max-height: 200px;
            overflow-y: auto;
            display: none;
            z-index: 1000;
            color: #333;
            text-align: left;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        }

        .search-result-item {
            padding: 10px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.2s;
        }

        .search-result-item:hover {
            background-color: #f0f2f5;
        }

        .search-result-item img {
            width: 40px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
        }

        .search-result-item div {
            display: flex;
            flex-direction: column;
        }

        .search-result-item .name {
            font-weight: bold;
            font-size: 0.9rem;
            color: #333;
        }

        .search-result-item .price {
            font-size: 0.8rem;
            color: var(--primary-color);
        }

        /* Sidebar Layout */
        .page-container {
            display: flex;
            gap: 20px;
            padding: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .page-container.no-sidebar {
            justify-content: center;
        }

        .left-sidebar {
            width: 280px;
            flex-shrink: 0;
        }

        /* Mobile Sidebar Styles */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
            pointer-events: auto;
            background: transparent;
            border: none;
            position: relative;
            z-index: 1006;
        }

        .sidebar-overlay {
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1002;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s ease;
        }
        
        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        body.nav-open {
            overflow: hidden;
        }

        .mobile-close-btn {
            display: none;
        }

        .service-popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1200;
            padding: 16px;
        }
        .service-popup-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 16px 18px;
            max-width: 360px;
            width: 100%;
            text-align: center;
            box-shadow: 0 10px 24px rgba(0,0,0,0.2);
        }
        .service-popup-card h3 {
            margin: 0 0 8px;
            color: var(--primary-color);
        }
        .service-popup-card p {
            font-size: 0.92rem;
            color: #374151;
            margin-bottom: 12px;
        }
        .service-popup-card button {
            width: 100%;
            margin-top: 6px;
            padding: 8px 10px;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            cursor: pointer;
        }
        #services-more-btn {
            background: var(--primary-color);
            color: #ffffff;
        }
        .service-popup-close {
            background: #e5e7eb;
            color: #1f2933;
        }

        .header-left {
            display: flex;
            align-items: center;
        }

        .ad-container {
            position: relative;
            margin-bottom: 20px;
        }

        .ad-close-btn {
            position: absolute;
            top: 5px;
            right: 5px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            cursor: pointer;
            z-index: 10;
        }

        .left-sidebar img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .main-content {
            flex: 1;
        }

        @media (max-width: 1100px) {
            .left-sidebar { display: none; }
            .page-container { justify-content: center; }
            .main-content { flex: 0 1 600px; }
        }

        @media (max-width: 768px) {
            .top-bar { display: none; }
            body { font-size: 15px; }
            .header { height: auto; padding: 6px 10px; }
            .header-container { flex-direction: column; justify-content: center; padding: 6px 0; height: auto; gap: 6px; }
            .header .logo { height: 42px; padding-right: 0; }
            .header p { display: none; }
            
            .menu-toggle { display: none; }
            .sidebar-overlay { display: none; }

            .header nav {
                position: static;
                width: 100%;
                background-color: transparent;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                padding: 0 6px 6px;
                box-shadow: none;
                transition: none;
                z-index: auto;
                display: flex;
                flex-wrap: wrap;
                gap: 6px;
            }

            .header nav.active { display: flex; }

            .header nav a {
                width: auto;
                padding: 4px 8px;
                border-bottom: none;
                margin: 0;
                font-size: 0.72rem;
                color: var(--primary-color);
                border-radius: 6px;
            }

            .mobile-close-btn {
                display: none;
                align-self: flex-end;
                font-size: 1.5rem;
                margin-bottom: 10px;
                cursor: pointer;
                color: #666;
                padding: 5px;
            }

            .ad-banner-container { display: block; padding: 12px 0; margin-bottom: 12px; }
            .ad-banner-wrapper { flex-direction: column; gap: 12px; padding: 0 14px; }
            .ad-banner img { min-height: 110px; }
            .page-container { padding: 14px; }
            .services-section { padding: 0.75rem 8px; border-radius: 12px; }
            .services-container { flex-direction: column; align-items: stretch; gap: 8px; }
            .service-card { width: 100%; padding: 10px 12px; flex-direction: row; align-items: center; justify-content: flex-start; gap: 10px; background-color: rgba(255, 255, 255, 0.12); border-radius: 10px; }
            .service-card i { font-size: 1.4rem; margin-bottom: 0; }
            .service-card h3 { font-size: 1rem; text-align: left; margin-top: 0; }
            .featured-properties { gap: 12px; }
            .property-card img { height: 140px; }
            .property-details { padding: 0.75rem; }
            .property-details .price { font-size: 1rem; }
            .category-header { flex-direction: column; align-items: flex-start; }
            .category-header h2 { font-size: 1.6rem; }
            .mobile-special-ads { display: block; }
            .header nav a.jobs-link { margin: 0; border-radius: 8px; }
            .category-strip { margin: 1.2rem auto; padding: 0 14px; }
            .category-chips { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
        }
