        /* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        /* Skip link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: #000;
            color: #fff;
            padding: 8px;
            text-decoration: none;
            z-index: 1000;
            border-radius: 0 0 4px 4px;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header and Navigation Container */
        .header-nav-container {
            background-color: #69796B;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .header-nav-grid {
            display: grid;
            grid-template-columns: auto 1fr;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            min-height: 100px;
        }

        /* Header Styles */
        .header {
            display: flex;
            align-items: center;
            padding: 10px 0;
        }

        .logo {
            flex-shrink: 0;
        }

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

        .logo img {
            height: 80px;
            width: auto;
            min-width: 280px;
        }

        /* Navigation Wrapper */
        .nav-wrapper {
            display: flex;
            justify-content: flex-end;
        }

        .nav-container {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            position: relative;
            min-height: 60px;
        }

        /* Navigation Styles */
        .main-nav {
            display: flex;
            list-style: none;
            align-items: center;
            justify-content: center;
            margin: 0;
            padding: 0;
        }

        .main-nav > li {
            position: relative;
        }

        .main-nav a {
            display: block;
            color: #fff;
            text-decoration: none;
            padding: 20px 16px;
            transition: background-color 0.3s, color 0.3s;
            font-weight: 500;
        }

        .main-nav > li > a:hover,
        .main-nav > li > a:focus {
            background-color: rgba(255,255,255,0.1);
            outline: 2px solid #fff;
            outline-offset: -2px;
        }

        /* Dropdown Styles */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #5a6a5c;
            min-width: 250px;
            max-width: 300px;
            max-height: 400px;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            list-style: none;
            z-index: 1000;
        }

        /* Adjust dropdown position if it would go off-screen */
        .main-nav > li:last-child .dropdown,
        .main-nav > li:nth-last-child(2) .dropdown {
            right: 0;
            left: auto;
        }

        /* Alternative: Make dropdown open upward if near bottom of screen */
        @media (min-height: 600px) {
            .dropdown.open-up {
                top: auto;
                bottom: 100%;
                transform: translateY(10px);
            }
            
            .main-nav > li.show-dropdown .dropdown.open-up,
            .main-nav > li:hover .dropdown.open-up,
            .main-nav > li:focus-within .dropdown.open-up {
                transform: translateY(0);
            }
        }

        .dropdown a {
            padding: 12px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 400;
        }

        .dropdown a:hover,
        .dropdown a:focus {
            background-color: rgba(255,255,255,0.1);
            outline: 2px solid #fff;
            outline-offset: -2px;
        }

        .dropdown a:last-child {
            border-bottom: none;
        }

        /* Show dropdown on hover AND focus */
        .main-nav > li:hover .dropdown,
        .main-nav > li:focus-within .dropdown,
        .main-nav > li.show-dropdown .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-toggle::after {
            content: '▼';
            font-size: 12px;
            margin-left: 5px;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .main-nav > li.show-dropdown .dropdown-toggle::after,
        .main-nav > li:hover .dropdown-toggle::after,
        .main-nav > li:focus-within .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        /* Improved focus indicators for WCAG compliance */
        .main-nav a:focus,
        .dropdown a:focus,
        .circle-link:focus,
        .service-card:focus,
        .commission-link:focus,
        .partner-link:focus,
        .quick-link:focus,
        .commission-btn:focus,
        .btn:focus,
        .footer-link:focus {
            outline: 3px solid #005fcc;
            outline-offset: 2px;
            box-shadow: 0 0 0 1px #ffffff;
        }

        /* Ensure sufficient color contrast */
        .hero p {
            color: #f0f0f0;
        }

        .service-card p {
            color: #444444;
        }

        .commission-date {
            color: #555555;
        }

        /* Search Icon in Navigation */
        .search-link {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 20px 16px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-link:hover,
        .search-link:focus {
            background-color: rgba(255,255,255,0.1);
            outline: 2px solid #fff;
            outline-offset: -2px;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background-color: #ffffff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            padding: 0;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1001;
            width: 44px;
            height: 44px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 4px;
        }

        .mobile-menu-toggle:hover {
            background-color: #f0f0f0;
        }

        .mobile-menu-toggle:focus {
            outline: 2px solid #ffffff;
            outline-offset: 2px;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 24px;
            height: 3px;
            background-color: #69796B;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

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

        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                        url('../images/home-pic-v3.webp');
            background-size: cover;
            background-position: center;
            background-color: #2c2c2c;
            color: white;
            text-align: center;
            padding: 2rem 1rem 4rem 1rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .hero p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 0;
            color: #ffffff;
        }

        .hero-text-container {
            background-color: rgba(41, 51, 43, 0.75);
            padding: 2rem;
            border-radius: 20px;
            max-width: 800px;
            margin: 0 auto;
            border:1px solid #69796B;
        }

        /* Circle Links */
        .circle-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            position: relative;
            z-index: 10;
            margin: -80px auto 80px;
            max-width: 1200px;
            flex-wrap: wrap;
            padding: 0 1rem;
        }

        .circle-link {
            background: white;
            border-radius: 50%;
            width: 160px;
            height: 160px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #333;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            text-align: center;
            padding: 1.2rem;
            min-width: 44px;
            min-height: 44px;
        }

        .circle-link:hover,
        .circle-link:focus {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
            outline: 3px solid #69796B;
            outline-offset: 3px;
        }

        .circle-link i {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
            color: #69796B;
        }

        .circle-link span {
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1.2;
        }

        /* Status indicators */
        .status-on { color: #d32f2f !important; }
        .status-off { color: #388e3c !important; }

        /* UPDATED Featured Services Section */
        .featured-services {
            padding: 4rem 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: #333;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem 2rem;
            text-decoration: none;
            color: inherit;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-align: center;
            border: 1px solid #e2e8f0;
        }

        .service-card:hover,
        .service-card:focus {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            outline: 3px solid #69796B;
            outline-offset: 3px;
        }

        /* Large Icon Styles */
        .service-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            transition: all 0.3s ease;
            color: white;
        }

        /* Color variations for each service - matching site palette */
        .service-card:nth-child(1) .service-icon {
            background: linear-gradient(135deg, #69796B 0%, #5a6a5c 100%);
        }

        .service-card:nth-child(2) .service-icon {
            background: linear-gradient(135deg, #8fa891 0%, #69796B 100%);
        }

        .service-card:nth-child(3) .service-icon {
            background: linear-gradient(135deg, #5a6a5c 0%, #4a5a4c 100%);
        }

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

        .service-card-content {
            /* Remove padding since it's now handled by the card itself */
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #333;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Commission Info */
        .commission-info {
            padding: 4rem 0;
        }

        .commission-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .commission-cards {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .commission-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            flex: 1;
            max-width: 450px;
            text-align: center;
        }

        .commission-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #69796B;
            margin-bottom: 2rem;
            text-align: center;
        }

        .commission-list {
            list-style: none;
            margin-bottom: 2.5rem;
            text-align: left;
        }

        .commission-item {
            margin-bottom: 1rem;
        }

        .commission-link {
            background: #f8f9fa;
            padding: 1.25rem;
            border-radius: 8px;
            border-left: 4px solid #69796B;
            transition: all 0.3s ease;
            color: #333;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: block;
        }

        .commission-link:hover,
        .commission-link:focus {
            background: #e9ecef;
            transform: translateX(5px);
            color: #333;
            outline: 2px solid #69796B;
            outline-offset: 2px;
        }

        .commission-date {
            color: #666;
            font-size: 0.9rem;
            font-style: italic;
            margin-top: 0.5rem;
        }

        .commission-btn {
            background: #69796B;
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(105, 121, 107, 0.3);
        }

        .commission-btn:hover,
        .commission-btn:focus {
            background: #5a6a5c;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(105, 121, 107, 0.4);
            outline: 3px solid #333;
            outline-offset: 2px;
        }

        /* Quick Links */
        .quick-links {
            padding: 4rem 0;
            background: #FFFFFF;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .quick-link {
            background: white;
            padding: 1rem;
            text-decoration: none;
            color: #333;
            border-radius: 4px;
            text-align: center;
            font-weight: 600;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .quick-link:hover,
        .quick-link:focus {
            background: #69796B;
            color: white;
            outline: 3px solid #333;
            outline-offset: 2px;
        }

        /* Partner Links Section */
        .partner-links {
            padding: 3rem 0;
            background: #fff;
            border-top: 1px solid #eee;
        }

        .partner-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            text-align: center;
        }

        .partner-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 2rem;
        }

        .partner-images {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .partner-link {
            display: block;
            transition: all 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .partner-link:hover,
        .partner-link:focus {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            outline: 3px solid #69796B;
            outline-offset: 3px;
        }

        .partner-link img {
            width: 200px;
            height: 249px;
            object-fit: cover;
            display: block;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .footer-list {
            list-style: none;
        }

        .footer-list li {
            margin-bottom: 0.5rem;
        }

        .footer-link {
            color: #ccc;
            text-decoration: none;
        }

        .footer-link:hover,
        .footer-link:focus {
            color: white;
            text-decoration: underline;
            outline: 2px solid #69796B;
            outline-offset: 2px;
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 1rem;
            text-align: center;
            color: #aaa;
        }

        .contact-info {
            line-height: 1.8;
            color: #ffffff;
        }

        .contact-info strong {
            color: #ffffff;
            font-weight: 700;
        }

        .footer-section p {
            color: #ffffff;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .footer-section .small-text {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #e0e0e0;
        }

        .btn {
            background: #69796B;
            color: white;
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            display: inline-block;
            transition: background 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover,
        .btn:focus {
            background: #5a6a5c;
            outline: 3px solid #333;
            outline-offset: 2px;
        }

        /* Screen reader only content utility */
        .sr-only {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        /* Mobile Styles */
        @media (max-width: 639px) {
            /* Show mobile menu button */
            .mobile-menu-toggle {
                display: flex;
            }

            /* Adjust nav container for mobile */
            .nav-container {
                justify-content: space-between;
                padding: 0;
            }

            /* Hide and position main nav for mobile */
            .main-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: #69796B;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                padding: 80px 0 20px 0;
                margin: 0;
                overflow-y: auto;
                transition: left 0.3s ease;
                box-shadow: 2px 0 10px rgba(0,0,0,0.3);
                z-index: 1002;
            }

            .main-nav.active {
                left: 0;
            }

            .main-nav > li {
                width: 100%;
                margin: 0;
            }

            .main-nav a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                width: 100%;
                text-align: left;
            }

            .search-link {
                padding: 15px 20px;
                justify-content: flex-start;
                gap: 0.5rem;
            }

            .search-link::after {
                content: 'Search';
                font-size: 1rem;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                width: 100%;
                box-shadow: none;
                background-color: #5a6a5c;
                max-height: none;
                overflow-y: visible;
            }

            .dropdown-toggle::after {
                float: right;
            }

            .main-nav > li.active .dropdown {
                display: block;
            }

            .main-nav > li.show-dropdown .dropdown {
                display: none;
            }

            .dropdown a {
                padding-left: 40px;
                font-size: 0.9rem;
            }

            .circle-links {
                gap: 1rem;
                margin-top: -60px;
            }

            .circle-link {
                width: 140px;
                height: 140px;
                padding: 1rem;
            }

            .circle-link i {
                font-size: 2rem;
            }

            .circle-link span {
                font-size: 0.8rem;
            }

            .commission-cards {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }

            .commission-card {
                max-width: 100%;
            }

            .section-title {
                font-size: 2rem;
            }

            /* Mobile adjustments for featured services */
            .service-card {
                padding: 2rem 1.5rem;
            }

            .service-icon {
                width: 80px;
                height: 80px;
                font-size: 2.5rem;
            }

            /* Mobile Menu Overlay */
            .mobile-menu-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: rgba(0,0,0,0.5);
                z-index: 999;
            }

            .mobile-menu-overlay.active {
                display: block;
            }
        }

        /* Tablet Styles */
        @media (max-width: 1023px) and (min-width: 640px) {
            .header-nav-grid {
                grid-template-columns: 1fr;
                text-align: center;
                min-height: 120px;
                gap: 1rem;
                padding-top: 1rem;
                padding-bottom: 1rem;
            }

            .nav-wrapper {
                justify-content: center;
            }

            .nav-container {
                justify-content: center;
            }

            .main-nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
            }
        }

        /* High contrast mode support improvements */
        @media (prefers-contrast: high) {
            .circle-link {
                border: 3px solid currentColor;
            }
            
            .service-card {
                border: 3px solid currentColor;
            }

            .commission-card {
                border: 3px solid currentColor;
            }

            .partner-link {
                border: 3px solid currentColor;
            }

            .service-icon {
                background: #000 !important;
                color: #fff !important;
            }

            /* Ensure focus indicators are visible in high contrast */
            .main-nav a:focus,
            .dropdown a:focus,
            .circle-link:focus,
            .service-card:focus,
            .commission-link:focus,
            .partner-link:focus {
                outline: 3px solid !important;
                outline-offset: 2px !important;
            }
        }

        /* Reduced motion support - Enhanced */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                transform: none !important;
            }
            
            .service-card:hover,
            .service-card:focus {
                transform: none !important;
            }
            
            .service-card:hover .service-icon,
            .service-card:focus .service-icon {
                transform: none !important;
            }

            .circle-link:hover,
            .circle-link:focus {
                transform: none !important;
            }

            .dropdown-toggle::after {
                transition: none !important;
            }

            .dropdown {
                transition: none !important;
                transform: none !important;
            }
        }

        /* High contrast improvements */
        @media (prefers-contrast: high) {
            .main-nav a {
                border: 2px solid transparent;
            }
            
            .main-nav a:hover,
            .main-nav a:focus {
                border-color: currentColor;
                background-color: #ffffff;
                color: #000000;
            }

            .dropdown a:hover,
            .dropdown a:focus {
                border-color: currentColor;
                background-color: #ffffff;
                color: #000000;
            }
        }
