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

        body {
            font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: #212529;
            overflow-x: hidden;
        }

        /* EXACT MS.GOV COLORS */
        :root {
            --primary-blue: #34495e;
            --dark-blue: #2c3e50;
            --navy-header: #384454;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --border-gray: #dee2e6;
        }

        /* Top Navigation Bar - EXACT MATCH */
        .top-nav {
            background-color: var(--white);
            border-bottom: 1px solid var(--border-gray);
            padding: 10px 0;
            font-size: 14px;
        }

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

        .top-nav-left {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .top-nav-left a,
        .top-nav-left span {
            color: #212529;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
        }

        .top-nav-left i {
            font-size: 14px;
        }

        .top-nav-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .top-nav-right a {
            color: #212529;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
        }

        .top-nav-right a:hover {
            color: #0056b3;
        }

        /* Main Header - EXACT MATCH */
        .main-header {
            background-color: var(--white);
            padding: 15px 0;
            border-bottom: 1px solid var(--border-gray);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .site-logo {
            font-size: 32px;
            font-weight: 900;
            color: var(--dark-blue);
            letter-spacing: 3px;
            text-decoration: none;
        }

        .divider {
            width: 2px;
            height: 40px;
            background-color: #ccc;
        }

        .official-website {
            display: flex;
            flex-direction: column;
        }

        .official-text {
            font-size: 13px;
            color: #666;
        }

        .official-name {
            font-size: 14px;
            font-style: italic;
            color: #666;
        }

        /* Main Navigation - EXACT MATCH */
        .main-nav {
            display: flex;
            gap: 0;
        }

.main-nav a {
    color: var(--dark-blue);
    text-decoration: none;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background-color 0.2s;
            white-space: nowrap;
}

/* Elementor header widgets */
.elementor .top-nav .elementor-widget-text-editor a,
.elementor .top-nav .elementor-widget-text-editor span {
    color: #212529;
    text-decoration: none;
    font-size: 13px;
    margin-right: 12px;
}

.elementor .main-header .site-logo .elementor-heading-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark-blue);
    letter-spacing: 3px;
    text-decoration: none;
}

.elementor .main-header .official-website {
    font-size: 13px;
    color: #666;
}

.elementor .main-nav .elementor-button {
    background: transparent;
    color: var(--dark-blue);
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 0;
}

.elementor .main-nav .elementor-widget-button {
    display: inline-block;
}

.elementor .fcra-dropdown .dropdown-menu-custom {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

        .main-nav a:hover {
            background-color: #f0f0f0;
        }

        .main-nav .dropdown {
            position: relative;
        }

        .dropdown-menu-custom {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 1000;
            padding: 5px 0;
        }

        .dropdown:hover .dropdown-menu-custom {
            display: block;
        }

        .dropdown-menu-custom a {
            display: block;
            padding: 10px 20px;
            color: #212529;
            text-transform: none;
            font-weight: 400;
            font-size: 14px;
        }

        .dropdown-menu-custom a:hover {
            background-color: #f8f9fa;
        }

        /* Hero Section - EXACT MATCH */
        .hero-section {
            position: relative;
            min-height: 600px;
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1600&h=900&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(52, 73, 94, 0.85) 0%, rgba(44, 62, 80, 0.85) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: left;
            max-width: 800px;
            padding: 40px 20px;
        }

        .hero-content h1 {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-content .state-of {
            font-style: italic;
            font-weight: 300;
        }

        .hero-tagline {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
        }

        .hero-btn {
            display: inline-block;
            background-color: transparent;
            color: white;
            padding: 12px 30px;
            border: 2px solid white;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .hero-btn:hover {
            background-color: white;
            color: var(--dark-blue);
        }

        /* Search Section - EXACT MATCH */
        .search-section {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0,0,0,0.4);
            padding: 30px 0;
            z-index: 3;
        }

        .search-wrapper {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 15px 50px 15px 40px;
            border: none;
            border-radius: 4px;
            font-size: 15px;
            background-color: rgba(255,255,255,0.95);
        }

        .search-input::placeholder {
            color: #999;
        }

        .search-icon-left {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }

        .search-icon-right {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            cursor: pointer;
        }

        /* MISSI Chat Widget - EXACT MATCH */
        .chat-widget {
            position: absolute;
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border-radius: 8px;
            padding: 20px;
            width: 280px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            z-index: 4;
        }

        .chat-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .chat-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #34495e;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .chat-title h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
            color: #212529;
        }

        .chat-subtitle {
            font-size: 12px;
            color: #999;
        }

        .chat-close {
            margin-left: auto;
            cursor: pointer;
            color: #999;
        }

        .chat-body p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .chat-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }

        .chat-btn {
            padding: 6px 12px;
            border: 1px solid #ddd;
            border-radius: 20px;
            background: white;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .chat-btn:hover {
            background: #f0f0f0;
        }

        /* Arrow Down - EXACT MATCH */
        .scroll-arrow {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
        }

        .scroll-arrow img {
            width: 40px;
            opacity: 0.8;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-10px);}
            60% {transform: translateY(-5px);}
        }

        /* Section Title - EXACT MATCH */
        .section-title {
            text-align: center;
            padding: 60px 0 40px;
            background: white;
        }

        .section-title h2 {
            font-size: 32px;
            font-weight: 400;
            color: #212529;
        }

        /* Icon Grid - EXACT MATCH */
        .icon-grid-section {
            background: #f8f9fa;
            padding: 40px 0 60px;
        }

        .icon-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 30px;
        }

        .icon-item {
            text-align: center;
        }

        .icon-wrapper {
            width: 100px;
            height: 100px;
            margin: 0 auto 15px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .icon-item:hover .icon-wrapper {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .icon-wrapper img {
            width: 50px;
            height: 50px;
        }

        .icon-label {
            font-size: 14px;
            font-weight: 700;
            color: #212529;
        }

        /* Three Column Content - EXACT MATCH */
        .content-columns {
            background: white;
            padding: 60px 0;
        }

        .content-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            height: 100%;
        }

        .content-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: #212529;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 2px solid #212529;
        }

        .content-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .content-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .content-card ul li {
            margin-bottom: 10px;
        }

        .content-card ul li a {
            color: #0066cc;
            text-decoration: none;
            font-size: 14px;
        }

        .content-card ul li a:hover {
            text-decoration: underline;
        }

        /* Browse Directory Box - EXACT MATCH */
        .directory-box {
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
            color: white;
            padding: 60px;
            text-align: center;
            border-radius: 8px;
            margin: 60px 0;
        }

        .directory-box h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .directory-box p {
            font-size: 16px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .directory-btn {
            display: inline-block;
            background: white;
            color: #2c3e50;
            padding: 12px 35px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .directory-btn:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
        }

        /* Popular Services - EXACT MATCH */
        .popular-services {
            background: #f8f9fa;
            padding: 60px 0;
        }

        .star-bar {
            text-align: center;
            margin-bottom: 50px;
        }

        .star-bar img {
            width: 100%;
            max-width: 800px;
        }

        .services-title {
            text-align: center;
            font-size: 32px;
            font-weight: 400;
            margin-bottom: 50px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(9, 1fr);
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .service-item {
            text-align: center;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .service-item:hover {
            transform: scale(1.1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto;
        }

        .service-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Elected Officials Carousel - EXACT MATCH */
        .officials-section {
            background: white;
            padding: 60px 0;
        }

        .official-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .official-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }

        .official-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .official-info {
            padding: 25px;
        }

        .official-role {
            font-size: 12px;
            text-transform: uppercase;
            color: #666;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .official-name {
            font-size: 28px;
            font-weight: 700;
            color: #212529;
            margin-bottom: 15px;
        }

        .official-bio {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
        }

        .official-link {
            color: #0066cc;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
        }

        .official-link:hover {
            text-decoration: underline;
        }

        .carousel-controls {
            text-align: center;
            margin-top: 30px;
        }

        .more-officials {
            text-align: center;
            margin-top: 30px;
        }

        .more-officials a {
            color: #0066cc;
            text-decoration: none;
            font-weight: 700;
        }

        /* Legislature Links - EXACT MATCH */
        .legislature-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
            padding: 20px 0;
            border-top: 1px solid #dee2e6;
        }

        .legislature-links a {
            color: #0066cc;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
        }

        /* State Statistics - EXACT MATCH */
        .stats-section {
            background: #f8f9fa;
            padding: 60px 0;
        }

        .stats-star-bar {
            text-align: center;
            margin-bottom: 30px;
        }

        .stats-title {
            text-align: center;
            font-size: 32px;
            font-weight: 400;
            margin-bottom: 10px;
        }

        .stats-date {
            text-align: center;
            font-size: 14px;
            color: #666;
            margin-bottom: 40px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-box {
            background: white;
            padding: 25px;
            text-align: center;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #212529;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .stat-label a {
            color: #666;
            text-decoration: none;
        }

        .stat-label a:hover {
            color: #0066cc;
        }

        /* Footer - EXACT MATCH */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-logo img {
            height: 50px;
        }

        .footer-social a {
            display: inline-block;
            margin-left: 15px;
        }

        .footer-social img {
            width: 30px;
            height: 30px;
        }

        .footer-award img {
            height: 60px;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

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

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 14px;
        }

        .footer-section ul li a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 14px;
            color: rgba(255,255,255,0.7);
        }

        /* Elementor footer widgets */
        .elementor .footer-links ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .elementor .footer-links li {
            margin-bottom: 8px;
        }

        .elementor .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
        }

        .elementor .footer-links a:hover {
            color: white;
        }

        /* ms.gov match overrides */
        .elementor .top-nav {
            background: #f7f7f7;
            border-bottom: 1px solid #d8d8d8;
            padding: 10px 0;
        }

        .elementor .top-nav .top-nav-left,
        .elementor .top-nav .top-nav-right {
            display: flex;
            gap: 28px;
            align-items: center;
            font-size: 36px;
            font-size: 22px;
            justify-content: flex-start;
        }

        .elementor .top-nav .top-nav-right {
            justify-content: flex-end;
        }

        .elementor .top-nav a,
        .elementor .top-nav span {
            color: #1c2431;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
        }

        .elementor .main-header {
            background: #ffffff;
            border-top: 1px solid #1b2333;
            border-bottom: 1px solid #d8d8d8;
            padding: 10px 0;
        }

        .elementor .brand-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .elementor .brand-logo {
            font-size: 56px;
            font-weight: 900;
            letter-spacing: 1px;
            color: #0f2344;
            text-decoration: none;
            line-height: 1;
        }

        .elementor .brand-sub {
            color: #23324a;
            font-style: italic;
            font-size: 22px;
            white-space: nowrap;
        }

        .elementor .main-nav {
            display: flex;
            gap: 28px;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: wrap;
        }

        .elementor .main-nav a {
            color: #1a2130;
            text-decoration: none;
            font-size: 34px;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0.4px;
        }

        .elementor .hero-section {
            min-height: 520px;
        }

        .elementor .hero-section .elementor-heading-title {
            color: #fff;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 74px;
            line-height: 1.1;
            max-width: 820px;
        }

        .elementor .hero-tagline,
        .elementor .hero-login {
            color: #fff;
            font-size: 18px;
            margin-top: 12px;
        }

        .elementor .hero-login a {
            color: #fff;
            text-decoration: underline;
        }

        .elementor .hero-btn .elementor-button {
            background: #f4c24e;
            color: #12203a;
            font-weight: 700;
            border-radius: 4px;
            padding: 12px 20px;
        }

        .elementor .discover-panel-title,
        .elementor .discover-panel {
            background: #05285a;
            color: #fff;
        }

        .elementor .discover-panel-title {
            padding-top: 64px;
            padding-bottom: 12px;
        }

        .elementor .discover-title .elementor-heading-title {
            color: #fff;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 68px;
            line-height: 1.15;
        }

        .elementor .discover-panel {
            padding-bottom: 72px;
        }

        .elementor .discover-left-item {
            display: flex;
            align-items: center;
            gap: 18px;
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            padding: 14px 16px;
            border: 2px solid transparent;
            border-radius: 12px;
            margin-bottom: 14px;
        }

        .elementor .discover-left-item img {
            width: 54px;
            height: 54px;
        }

        .elementor .discover-left-item.active {
            border-color: #e3b24f;
            background: rgba(255, 255, 255, 0.03);
        }

        .elementor .discover-right {
            padding-left: 30px;
            border-left: 1px solid rgba(255, 255, 255, 0.35);
        }

        .elementor .discover-right h3 {
            color: #fff;
            font-size: 48px;
            font-size: 24px;
            margin-bottom: 8px;
        }

        .elementor .discover-right p {
            color: #dbe7ff;
            font-size: 18px;
            margin-bottom: 18px;
        }

        .elementor .discover-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 48px;
        }

        .elementor .discover-links a {
            color: #fff;
            text-decoration: underline;
            font-size: 18px;
        }

        .elementor .popular-services {
            padding: 64px 0;
            background: #ffffff;
        }

        .elementor .popular-services .elementor-heading-title {
            color: #15274a;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 48px;
            font-size: 36px;
            text-align: center;
        }

        .elementor .services-inline {
            margin-top: 24px;
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .elementor .services-inline img {
            width: 72px;
            height: 72px;
        }

        .elementor .stats-section {
            background: #f7f9fc;
            padding: 60px 0;
        }

        .elementor .stats-section .elementor-heading-title {
            color: #15274a;
            text-align: center;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 34px;
        }

        .elementor .stats-date {
            text-align: center;
            color: #637089;
            margin: 8px 0 24px;
        }

        .elementor .stats-tiles {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .elementor .stats-tiles div {
            background: #fff;
            border: 1px solid #dce4ef;
            border-radius: 10px;
            padding: 14px;
            text-align: center;
        }

        .elementor .stats-tiles strong {
            display: block;
            color: #0f2142;
            font-size: 24px;
            margin-bottom: 4px;
        }

        .elementor .stats-tiles span {
            color: #4f5f79;
            font-size: 14px;
        }

        @media (max-width: 900px) {
            .elementor .main-nav {
                justify-content: flex-start;
                gap: 14px;
            }

            .elementor .discover-links {
                grid-template-columns: 1fr;
            }

            .elementor .stats-tiles {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Final strict match layer */
        .elementor .ms-header-top {
            background: #1f2f56;
            border-bottom: 1px solid rgba(255,255,255,0.25);
            padding: 6px 0;
        }

        .elementor .ms-top-left,
        .elementor .ms-top-right {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .elementor .ms-top-right {
            justify-content: flex-end;
        }

        .elementor .ms-top-left a,
        .elementor .ms-top-left span,
        .elementor .ms-top-right a {
            color: #ffffff;
            font-size: 13px;
            text-decoration: none;
        }

        .elementor .ms-header-main {
            background: #15284b;
            border-top: 1px solid rgba(255,255,255,0.15);
            border-bottom: 1px solid rgba(255,255,255,0.15);
            padding: 8px 0;
        }

        .elementor .ms-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .elementor .ms-brand a {
            color: #ffffff;
            text-decoration: none;
            font-size: 32px;
            font-weight: 900;
            letter-spacing: 1px;
            line-height: 1;
        }

        .elementor .ms-brand span {
            color: #ffffff;
            opacity: 0.92;
            font-size: 14px;
            font-style: italic;
            white-space: nowrap;
        }

        .elementor .ms-main-nav {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 22px;
            flex-wrap: wrap;
        }

        .elementor .ms-main-nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.6px;
        }

        .elementor .ms-hero {
            position: relative;
        }

        .elementor .ms-hero .elementor-container {
            max-width: 1200px;
        }

        .elementor .ms-hero-left {
            padding-top: 92px;
            padding-left: 12px;
        }

        .elementor .ms-hero-title .elementor-heading-title {
            color: #ffffff;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 66px;
            line-height: 1.03;
            font-weight: 500;
            max-width: 530px;
        }

        .elementor .ms-hero-title em {
            font-style: italic;
        }

        .elementor .ms-hero-tagline {
            color: #ffffff;
            letter-spacing: 1px;
            font-size: 14px;
            margin: 10px 0 10px;
        }

        .elementor .ms-hero-btn .elementor-button {
            background: rgba(0,0,0,0.35);
            color: #ffffff;
            border: 1px solid rgba(255,255,255,0.85);
            border-radius: 20px;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.4px;
            padding: 10px 18px;
        }

        .elementor .ms-hero-login {
            color: #ffffff;
            font-size: 12px;
            margin-top: 8px;
        }

        .elementor .ms-hero-login a {
            color: #ffffff;
            text-decoration: underline;
        }

        .elementor .ms-hero-right {
            padding-top: 74px;
        }

        .elementor .ms-chat-wrap {
            max-width: 490px;
            margin-left: auto;
        }

        .elementor .ms-chat-top {
            text-align: right;
            color: #ffffff;
            font-size: 12px;
            margin-bottom: 8px;
        }

        .elementor .ms-chat-box {
            background: #ffffff;
            border-radius: 6px;
            box-shadow: 0 3px 16px rgba(0,0,0,0.22);
            padding: 14px 14px 10px;
        }

        .elementor .ms-chat-msg {
            background: #f4f4f4;
            border: 1px solid #dedede;
            border-radius: 4px;
            color: #333;
            font-size: 12px;
            line-height: 1.45;
            padding: 10px;
            min-height: 120px;
        }

        .elementor .ms-chat-input {
            margin-top: 74px;
            border: 1px solid #d7d7d7;
            border-radius: 20px;
            padding: 10px 14px;
            font-size: 12px;
            color: #9a9a9a;
        }

        .elementor .ms-chat-clear {
            text-align: center;
            color: #1a47a5;
            font-size: 12px;
            margin-top: 8px;
        }

        .elementor .ms-discover {
            background: #04285b;
            padding: 52px 0 64px;
        }

        .elementor .ms-discover-title .elementor-heading-title {
            color: #ffffff;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 50px;
            line-height: 1.2;
            margin-bottom: 28px;
        }

        .elementor .ms-left-item {
            display: flex;
            align-items: center;
            gap: 14px;
            color: #fff;
            font-size: 18px;
            font-size: 14px;
            font-weight: 700;
            border: 2px solid transparent;
            border-radius: 6px;
            padding: 8px 10px;
            margin-bottom: 10px;
        }

        .elementor .ms-left-item img {
            width: 32px;
            height: 32px;
        }

        .elementor .ms-left-item.active {
            border-color: #dfb24f;
        }

        .elementor .ms-discover-right {
            border-left: 1px solid rgba(255,255,255,0.45);
            padding-left: 26px;
            color: #fff;
        }

        .elementor .ms-discover-right h3 {
            color: #fff;
            font-size: 40px;
            font-size: 24px;
            margin-bottom: 6px;
        }

        .elementor .ms-discover-right p {
            color: #d7e0f0;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .elementor .ms-discover-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 7px 40px;
        }

        .elementor .ms-discover-links a {
            color: #ffffff;
            text-decoration: underline;
            font-size: 14px;
            line-height: 1.35;
        }

        .elementor .ms-agency-section {
            background: #efefef;
            padding: 38px 0 26px;
        }

        .elementor .ms-agency-banner {
            min-height: 140px;
            background: linear-gradient(rgba(4,19,45,0.18), rgba(4,19,45,0.18)), url('https://images.unsplash.com/photo-1529101091764-c3526daf38fe?w=1400&h=420&fit=crop');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .elementor .ms-agency-overlay {
            position: absolute;
            inset: 0;
            padding: 22px 24px;
            color: #fff;
        }

        .elementor .ms-agency-overlay h3 {
            color: #fff;
            font-size: 40px;
            font-size: 38px;
            font-family: Georgia, "Times New Roman", serif;
            margin-bottom: 3px;
        }

        .elementor .ms-agency-overlay p {
            color: #fff;
            font-size: 13px;
            margin-bottom: 10px;
        }

        .elementor .ms-agency-btn {
            display: inline-block;
            border: 1px solid #fff;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 8px 12px;
            text-decoration: none;
        }

        .elementor .ms-services-header {
            background: #efefef;
            padding: 18px 0 0;
        }

        .elementor .ms-services-title .elementor-heading-title {
            text-align: center;
            font-family: Georgia, "Times New Roman", serif;
            color: #14284a;
            font-size: 52px;
            font-size: 36px;
        }

        .elementor .ms-services-grid {
            background: #efefef;
            padding: 14px 0 46px;
        }

        .elementor .ms-service-card {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            border-left: 4px solid #e1b34c;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            min-height: 44px;
            padding: 8px 10px;
        }

        .elementor .ms-service-card img {
            width: 22px;
            height: 22px;
        }

        .elementor .ms-service-card span {
            color: #2a2f3a;
            font-size: 14px;
        }

        .elementor .ms-officials {
            background: #04285b;
            padding: 42px 0 30px;
            color: #fff;
        }

        .elementor .ms-officials .ms-official-img img {
            border: 1px solid rgba(255,255,255,0.2);
        }

        .elementor .ms-official-role {
            color: #e3b64d;
            letter-spacing: 1px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .elementor .ms-official-name .elementor-heading-title {
            color: #fff;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 44px;
            font-size: 48px;
            margin-bottom: 8px;
        }

        .elementor .ms-official-bio {
            color: #d7e3f5;
            font-size: 14px;
            line-height: 1.55;
            max-width: 700px;
        }

        .elementor .ms-official-btn .elementor-button {
            background: #0c1b34;
            border: 1px solid rgba(255,255,255,0.35);
            color: #fff;
            padding: 9px 14px;
            font-size: 13px;
            border-radius: 7px;
        }

        .elementor .ms-slider-dots {
            margin-top: 18px;
        }

        .elementor .ms-slider-dots span {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.35);
            margin-right: 8px;
        }

        .elementor .ms-slider-dots span.active {
            background: #fff;
        }

        .elementor .ms-official-bottom {
            margin-top: 18px;
            padding-top: 12px;
            border-top: 1px solid rgba(255,255,255,0.35);
            display: flex;
            justify-content: space-between;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }

        .elementor .ms-official-bottom > a {
            color: #fff;
            font-size: 13px;
            text-decoration: none;
        }

        .elementor .ms-leg-links {
            display: flex;
            gap: 10px;
        }

        .elementor .ms-leg-links a {
            color: #fff;
            text-decoration: none;
            background: #0a1f3e;
            border: 1px solid rgba(255,255,255,0.25);
            padding: 6px 10px;
            font-size: 13px;
            border-radius: 4px;
        }

        .elementor .ms-stats {
            padding: 44px 0 54px;
        }

        .elementor .ms-stats-title .elementor-heading-title {
            color: #fff;
            text-align: center;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 52px;
            font-size: 36px;
        }

        .elementor .ms-stats-date {
            text-align: center;
            color: #e3e9f6;
            font-size: 13px;
            margin: 4px 0 20px;
        }

        .elementor .ms-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px 18px;
        }

        .elementor .ms-stats-grid div {
            border-left: 1px solid rgba(255,255,255,0.32);
            padding-left: 12px;
        }

        .elementor .ms-stats-grid strong {
            display: block;
            color: #fff;
            font-size: 42px;
            font-size: 36px;
            line-height: 1;
            margin-bottom: 4px;
        }

        .elementor .ms-stats-grid a,
        .elementor .ms-stats-grid span {
            color: #fff;
            font-size: 14px;
            text-decoration: underline;
        }

        .elementor .ms-footer-main {
            background: linear-gradient(180deg, #0d5a33 0%, #0a4f2d 100%);
            padding: 56px 0 34px;
        }

        .elementor .ms-footer-main .elementor-widget-heading .elementor-heading-title {
            color: #ffffff;
            margin-bottom: 12px;
        }

        .elementor .ms-footer-text {
            color: #e8f2ec;
            font-size: 15px;
            line-height: 1.65;
            margin-bottom: 16px;
        }

        .elementor .ms-footer-contact p {
            margin: 0 0 10px;
            color: #f3fff9;
            font-size: 15px;
            line-height: 1.6;
        }

        .elementor .ms-footer-contact i {
            margin-right: 10px;
            width: 16px;
            color: #ffffff;
        }

        .elementor .ms-footer-main .elementor-widget-icon-list .elementor-icon-list-item {
            margin-bottom: 6px;
        }

        .elementor .ms-footer-main .elementor-widget-icon-list .elementor-icon-list-text {
            color: #eef7f1;
            font-size: 15px;
            line-height: 1.55;
        }

        .elementor .ms-footer-main .elementor-widget-icon-list .elementor-icon-list-icon i {
            color: #ffffff;
        }

        .elementor .ms-footer-social {
            display: flex;
            gap: 10px;
            margin-top: 16px;
            margin-bottom: 14px;
        }

        .elementor .ms-footer-social .elementor-social-icon {
            border: 1px solid rgba(255, 255, 255, 0.45);
        }

        .elementor .ms-footer-menu nav ul,
        .elementor .ms-footer-menu .hfe-nav-menu {
            display: block !important;
            padding: 0;
            margin: 0;
        }

        .elementor .ms-footer-menu .menu-item {
            display: block;
            margin: 0 0 7px;
        }

        .elementor .ms-footer-menu .menu-item a.hfe-menu-item {
            color: #eef7f1 !important;
            text-decoration: none;
            font-size: 15px;
            line-height: 1.5;
            padding: 0 !important;
        }

        .elementor .ms-footer-menu .menu-item a.hfe-menu-item::before {
            content: "\203A";
            margin-right: 10px;
            font-weight: 700;
        }

        .elementor .ms-footer-menu .menu-item a.hfe-menu-item:hover {
            color: #ffffff !important;
            text-decoration: underline;
        }

        .elementor .ms-footer-logo-below img {
            max-width: 240px;
            width: 100%;
            height: auto;
            margin-top: 6px;
        }

        .elementor .ms-footer-bottom {
            background: #073f24;
            padding: 14px 0;
            border-top: 1px solid rgba(255,255,255,0.12);
        }

        .elementor .ms-footer-copy {
            margin: 0;
            text-align: center;
            color: #ffffff;
            font-size: 15px;
        }

        /* Legacy internal page content */
        .rds-legacy-content {
            max-width: 1120px;
            margin: 36px auto;
            padding: 0 20px 30px;
            color: #1f2937;
            font-size: 16px;
            line-height: 1.7;
            word-break: break-word;
        }

        .rds-legacy-content h1,
        .rds-legacy-content h2,
        .rds-legacy-content h3,
        .rds-legacy-content h4 {
            color: #0f2344;
            margin: 0 0 14px;
            line-height: 1.3;
        }

        .rds-legacy-content p {
            margin: 0 0 14px;
        }

        .rds-legacy-content a {
            color: #0b4ea2;
            text-decoration: underline;
        }

        .rds-legacy-content ul,
        .rds-legacy-content ol {
            margin: 0 0 14px 22px;
            padding: 0;
        }

        .rds-legacy-content img,
        .rds-legacy-content iframe,
        .rds-legacy-content table {
            max-width: 100%;
            height: auto;
        }

        .rds-legacy-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 12px 0 18px;
            display: block;
            overflow-x: auto;
        }

        .rds-legacy-content td,
        .rds-legacy-content th {
            border: 1px solid #dbe2ec;
            padding: 8px 10px;
            vertical-align: top;
        }

        /* Internal page banner (all pages except front page) */
        .rds-page-hero {
            position: relative;
            width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            margin-bottom: 50px;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            color: #ffffff;
            background:
                radial-gradient(1200px 420px at 12% 0%, rgba(29, 78, 216, 0.35), transparent 60%),
                radial-gradient(1000px 380px at 86% 100%, rgba(16, 185, 129, 0.30), transparent 60%),
                linear-gradient(120deg, #0d2a56 0%, #123a71 45%, #0e5b4a 100%);
        }

        .rds-page-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(140deg, rgba(255, 255, 255, 0.08) 0%, transparent 45%),
                linear-gradient(35deg, rgba(255, 255, 255, 0.06) 0%, transparent 38%);
            pointer-events: none;
        }

        .rds-page-hero-inner {
            position: relative;
            z-index: 1;
            padding: 20px 20px 50px;
            max-width: 960px;
        }

        .rds-page-hero-breadcrumbs {
            font-size: 14px;
            letter-spacing: 0.2px;
            opacity: 0.92;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .rds-page-hero-breadcrumbs a {
            color: #ffffff;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.45);
        }

        .rds-page-hero-title {
            margin: 0;
            color: #ffffff;
            font-size: 56px;
            line-height: 1.15;
            font-weight: 800;
            text-transform: none;
        }

        @media (max-width: 767px) {
            .rds-page-hero {
                min-height: 320px;
            }

            .rds-page-hero-title {
                font-size: 38px;
            }
        }


        /* Responsive */
        @media (max-width: 1200px) {
            .icon-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .services-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 36px;
            }
            .icon-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
            .chat-widget {
                display: none;
            }
        }

        /* Header alignment: keep logo and menu on one row (desktop) */
        @media (min-width: 1025px) {
            .elementor-location-header .elementor-53 .elementor-element.elementor-element-7d61b1a {
                flex-wrap: nowrap !important;
            }

            .elementor-location-header .elementor-53 .elementor-element.elementor-element-edcbe8c {
                flex: 0 0 auto;
                width: auto;
                min-width: 460px;
            }

            .elementor-location-header .elementor-53 .elementor-element.elementor-element-a56035b {
                flex: 1 1 auto;
                width: auto !important;
                max-width: none;
            }

            .elementor-location-header .elementor-53 .elementor-element.elementor-element-a56035b nav ul,
            .elementor-location-header .elementor-53 .elementor-element.elementor-element-a56035b nav .hfe-nav-menu {
                display: flex;
                justify-content: flex-end;
                align-items: center;
                flex-wrap: nowrap;
            }

            .elementor-location-header .elementor-53 .elementor-element.elementor-element-a56035b .menu-item a.hfe-menu-item {
                padding-left: 12px;
                padding-right: 12px;
                white-space: nowrap;
            }
        }
