        /* === RESET & BASE STYLES === */

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

        body {
            font-family: 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            min-height: 100vh;
            color: #2d3748;
            line-height: 1.6;
            padding-bottom: 20px;
        }

        .clear-fix::after {
            content: "";
            display: table;
            clear: both;
        }

        /* === HEADER STYLES === */

        #site-container {
            position: relative;
        }

        #site-header {
            position: relative;
        }

        .entry-header {
            background-color: #ffffff;
            padding: 20px 0;
        }

        .graceful-wrap-outer {
            width: 100%;
        }

        .graceful-wrap-inner {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 40px;
        }

        .site-branding {
            text-align: center;
            width: 100%;
        }

        .logo-img {
            display: inline-block;
            text-decoration: none;
        }

        .logo-img img {
            max-width: 400px;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        /* === UPDATED NAVIGATION STYLES - WIDER MENU === */

        #main-navigation {
            background-color: #dedede;
            padding: 0;
            position: relative;
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            margin-top: 0px;
            height: auto;
        }

        #main-navigation>div {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 70px;
        }

        .site-menu-wrapper {
            margin-right: 0;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            padding: 0 20px;
        }

        /* Main Menu - Wider with Slide Animation - CENTERED */

        #site-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin: 0 auto;
            background-color: #dedede;
            border-radius: 0px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1001;
            max-width: 1200px;
            width: 100%;
            transform-origin: top center;
            transition: transform 0.4s ease, opacity 0.4s ease, max-height 0.4s ease;
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
            max-height: 0;
            overflow: hidden;
            border: 1px solid #e8e8e8;
        }

        #site-menu.hidden {
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
            max-height: 0;
        }

        #site-menu.visible {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
            max-height: 500px;
        }

        #site-menu li {
            margin: 0;
            position: relative;
            flex-grow: 0;
            text-align: center;
            min-width: 180px;
        }

        #site-menu a {
            color: #000000;
            text-decoration: none;
            padding: 18px 25px;
            display: block;
            transition: all 0.3s;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            white-space: nowrap;
        }

        #site-menu a:hover,
        #site-menu li.current-menu-item>a {
            color: #010101;
            background-color: #f8f9fa;
            transform: translateY(-2px);
        }

        /* Menu Toggle Button (for slide animation) - UPDATED STYLE */

        .menu-toggle-btn-slide {
            background: #dedede;
            color: black;
            border: none;
            padding: 0px 0px;
            cursor: pointer;
            font-size: 10px;
            margin: 10px auto;
            display: block;
            transition: all 0.3s;
            font-weight: 600;
            width: 100px;
        }

        .menu-toggle-btn-slide:hover {
            background: #dedede;
            transform: translateY(-3px);
        }

        .menu-toggle-btn-slide i {
            margin-right: -150px;
            font-size: 25px;
        }

        /* Search in navigation - UPDATED POSITION */

        .main-navigation-search {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
        }

        .navigation-search-button {
            background: none;
            border: none;
            color: #000000;
            font-size: 16px;
            cursor: pointer;
            padding: 10px;
            transition: transform 0.3s;
        }

        .navigation-search-button:hover {
            transform: scale(1.1);
        }

        /* Search Modal - UPDATED WITH SLIDE ANIMATION */

        .graceful-search {
            display: none;
            position: fixed;
            top: -100%;
            left: 0;
            width: 100%;
            height: auto;
            background: rgba(255, 255, 255, 0.98);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            transition: top 0.5s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .graceful-search.active {
            display: flex;
            top: 0;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                top: -100%;
                opacity: 0;
            }
            to {
                top: 0;
                opacity: 1;
            }
        }

        .graceful-search form {
            width: 90%;
            max-width: 600px;
            position: relative;
        }

        .graceful-search input[type="text"] {
            width: 100%;
            padding: 20px;
            font-size: 18px;
            border: 2px solid #010101;
            border-radius: 5px;
            background: white;
        }

        .graceful-search input[type="submit"] {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: #010101;
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
        }

        .close-graceful-search {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #010101;
            transition: transform 0.3s;
        }

        .close-graceful-search:hover {
            transform: rotate(90deg);
        }

        .graceful-search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            display: none;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .graceful-search-overlay.active {
            display: block;
            opacity: 1;
        }

        .menu-toggle-container {
            text-align: center;
            margin: 10px 0;
            width: 100%;
        }

        /* === MAIN CONTENT EXACT STYLES === */

        .main-content {
            background-color: #ffffff;
            padding: 10px 0;
            min-height: 500px;
        }

        .content-wrap {
            width: calc(100% - 307px);
            float: left;
        }

        .post-header {
            margin-bottom: 20px;
        }

        .page-title {
            text-align: center;
            color: #030303;
            font-size: 35px;
            margin-bottom: 1px;
            font-weight: normal;
        }

        .post-page-content {
            margin-top: 1px;
        }

        /* === TABLES EXACT STYLES === */

        .wp-block-table {
            margin: 1px 0;
            overflow-x: auto;
        }

        .wp-block-table table {
            width: 100%;
            border-collapse: collapse;
            border-spacing: 0;
        }

        .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
            background-color: #f0f0f0;
        }

        .wp-block-table td {
            padding: 1em;
            word-break: break-word;
        }

        .has-fixed-layout {
            table-layout: fixed;
            width: 100%;
        }

        /* === FORM EXACT STYLES === */

        .wp-block-table form {
            max-width: 400px;
            margin: 0 auto;
            padding: 16px;
            border-radius: 8px;
            background-color: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border: 1px solid #e0e0e0;
        }

        .wp-block-table h4 {
            text-align: center;
            margin-bottom: 15px;
            color: #222;
            font-size: 20px;
            font-weight: bold;
        }

        .wp-block-table label {
            display: block;
            margin-bottom: 4px;
            font-size: 14px;
            color: #444;
        }

        .wp-block-table select,
        .wp-block-table input[type="text"] {
            width: 100%;
            height: 38px;
            padding: 8px 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
            background-color: #ffffff;
            color: #333;
            font-size: 14px;
        }

        .wp-block-table select:focus,
        .wp-block-table input[type="text"]:focus {
            outline: none;
            border-color: #4caf50;
            box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.15);
        }

        .wp-block-table input[type="submit"] {
            width: 100%;
            background-color: #ffffff;
            color: black;
            padding: 10px 0;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
        }

        .wp-block-table input[type="submit"]:hover {
            background-color: #ffffff;
        }

        /* === SEPARATOR EXACT STYLES === */

        .wp-block-separator {
            border: none;
            border-bottom: 2px solid #7c7c7c;
            margin-left: auto;
            margin-right: auto;
            margin: 20px auto;
        }

        .has-alpha-channel-opacity {
            opacity: 1;
        }

        .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
            width: 100px;
        }

        /* === SIDEBAR EXACT STYLES === */

        .sidebar-right-wrap {
            width: 307px;
            float: right;
            padding-left: 37px;
        }

        .graceful-widget {
            margin-bottom: 30px;
        }

        .widget-title {
            color: #030303;
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e8e8e8;
            position: relative;
            font-weight: normal;
        }

        .widget-title:before,
        .widget-title:after {
            content: '';
            position: absolute;
            bottom: -2px;
            height: 2px;
            background-color: #e8e8e8;
            width: 20%;
        }

        .widget-title:before {
            left: 0;
        }

        .widget-title:after {
            right: 0;
        }

        /* === AGENT TABLE SPECIFIC === */

        .agent-main-table {
            border: 1px solid black;
            width: 100%;
            border-collapse: collapse;
        }

        .agent-main-table tr td {
            border: 0px solid #e8e8e8;
            padding: 10px;
            text-align: center;
        }

        .agent-main-table tr:nth-child(odd) {
            background-color: #f0f0f0;
        }

        .agent-main-table tr:first-child td {
            background-color: #e8e8e8;
            color: black;
            font-weight: bold;
            padding: 15px;
            font-size: 16px;
        }

        /* === LINKS EXACT STYLES === */

        a {
            color: #010101;
            text-decoration: none;
        }

        a:hover {
            color: rgba(1, 1, 1, 0.8);
        }

        /* === FOOTER EXACT STYLES === */

        #site-footer {
            background-color: #f6f6f6;
            color: #333333;
            padding: 30px 0;
            margin-top: 40px;
            clear: both;
        }

        .site-footer-wrap {
            padding-left: 40px;
            padding-right: 40px;
        }

        .footer-bottom-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            float: right;
            color: #333333;
            font-size: 14px;
        }

        .footer-credits {
            float: left;
            display: none;
        }

        .scrolltop {
            display: none;
            position: fixed;
            bottom: 50px;
            right: 20px;
            color: black;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s;
        }

        .scrolltop:hover {
            transform: translateY(-3px);
        }

        /* === RESPONSIVE EXACT STYLES === */

        @media (max-width: 992px) {
            .site-menu-wrapper {
                width: 100%;
                margin-right: 0;
            }
            #site-menu {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                max-width: 95%;
            }
            #site-menu li {
                width: auto;
                text-align: center;
                min-width: 160px;
            }
            #site-menu a {
                padding: 15px 20px;
                font-size: 15px;
            }
            .content-wrap {
                width: 100%;
                float: none;
            }
            .sidebar-right-wrap {
                width: 100%;
                float: none;
                padding-left: 0;
                margin-top: 30px;
            }
            .main-navigation-search {
                right: 20px;
            }
        }

        @media (max-width: 768px) {
            .graceful-wrap-inner {
                padding: 0 20px;
            }
            #main-navigation>div {
                padding-left: 20px;
                padding-right: 20px;
            }
            .site-footer-wrap {
                padding-left: 20px;
                padding-right: 20px;
            }
            .logo-img img {
                max-width: 300px;
            }
            .footer-bottom-wrap {
                flex-direction: column;
                text-align: center;
            }
            .footer-copyright {
                float: none;
                margin-bottom: 10px;
            }
            .agent-main-table {
                font-size: 12px;
            }
            .agent-main-table td {
                padding: 5px;
            }
            #site-menu {
                flex-direction: column;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
                opacity: 0;
                transform: translateY(-20px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                border-radius: 0 0 10px 10px;
                max-width: 100%;
            }
            #site-menu.visible {
                max-height: 500px;
                opacity: 1;
                transform: translateY(0);
            }
            #site-menu.hidden {
                max-height: 0;
                opacity: 0;
                transform: translateY(-20px);
            }
            #site-menu li {
                width: 100%;
                min-width: unset;
            }
            #site-menu a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }
            .menu-toggle-btn-slide {
                width: 170px;
                font-size: 14px;
            }
        }

        /* === SEARCH RESULTS EXACTLY LIKE 2ND CODE === */

        #agent-details {
            display: none;
            max-width: 500px;
            width: 90%;
            margin: 30px auto;
            background-color: #ffffff;
            padding: 25px;
            color: #333333;
            font-size: 16px;
            line-height: 1.8;
            transition: all 0.3s ease;
            font-family: Arial, sans-serif;
            font-weight: 500;
        }

        #agent-details.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        #agent-details:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        #agent-details p {
            margin-bottom: 15px;
            color: #333333;
            font-weight: 600;
            font-size: 20px;
        }

        #agent-details table {
            width: 100%;
            margin: 15px 0;
            border-radius: 5px;
            overflow: hidden;
            border-collapse: collapse;
        }

        #agent-details td {
            border: 1px solid #e8e8e8;
            padding: 12px;
            text-align: center;
            font-size: 14px;
        }

        #agent-description {
            text-align: center;
            font-size: 16px;
            margin-bottom: 20px;
            color: #333;
            line-height: 1.6;
            padding: 10px;
            background: #f8f9fa;
        }

        #agent-type-text,
        #agent-id-text {
            color: #333333;
            font-weight: bold;
        }

        #agent-id-cell {
            color: #4caf50;
            font-weight: bold;
            font-size: 16px;
        }

        .whatsapp-link-result {
            display: inline-flex;
            align-items: center;
            color: #25D366;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: bold;
            text-decoration: underline;
        }

        .whatsapp-link-result:hover {
            color: #128C7E;
            text-decoration: underline;
        }

        .whatsapp-link-result img {
            width: 26px;
            height: 26px;
            margin-right: 8px;
            transition: transform 0.3s;
        }

        .whatsapp-link-result:hover img {
            transform: scale(1.1);
        }

        /* === NOTIFICATION STYLES === */

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 25px;
            background: #4caf50;
            color: white;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 9999;
            display: none;
            animation: slideIn 0.3s;
        }

        .notification.error {
            background: #f44336;
        }

        .notification.info {
            background: #2196f3;
        }

        .notification.success {
            background: #4caf50;
        }

        #message {
            text-align: center;
            color: #f44336;
            margin: 10px auto;
            font-weight: bold;
            max-width: 90%;
            padding: 10px;
            border-radius: 5px;
            transition: all 0.3s;
            font-family: Arial, sans-serif;
            font-weight: 500;
            display: none;
        }

        #message.success {
            color: #4caf50;
            background-color: rgba(76, 175, 80, 0.1);
            display: block;
        }

        #message.error {
            color: #f44336;
            background-color: rgba(244, 67, 54, 0.1);
            display: block;
        }

        #message.warning {
            color: #ff9800;
            background-color: rgba(255, 152, 0, 0.1);
            display: block;
        }

        #message.info {
            color: #2196f3;
            background-color: rgba(33, 150, 243, 0.1);
            display: block;
        }

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

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* === LOADING SPINNER === */

        .spinner {
            display: none;
            text-align: center;
            padding: 20px;
        }

        .spinner.active {
            display: block;
        }

        .cssload-speeding-wheel {
            width: 36px;
            height: 36px;
            margin: 0 auto;
            border: 2px solid #010101;
            border-radius: 50%;
            border-left-color: transparent;
            border-right-color: transparent;
            animation: cssload-spin 575ms infinite linear;
        }

        @keyframes cssload-spin {
            100% {
                transform: rotate(360deg);
            }
        }

        /* Responsive adjustments */

        @media (max-width: 768px) {
            #agent-details {
                width: 95%;
                padding: 20px;
                font-size: 14px;
            }
            #agent-details td {
                padding: 8px;
                font-size: 13px;
            }
            #agent-description {
                font-size: 14px;
            }
        }