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

        :root {
            --bg-color: #ffffff;
            --text-color: #333;
            --nav-bg: rgba(255, 255, 255, 0.95);
            --card-bg: #fff;
            --card-shadow: rgba(0, 0, 0, 0.1);
            --faq-bg: #f8f9fa;
            --faq-hover: #e9ecef;
            --border-color: rgba(0, 0, 0, 0.1);
            --hero-bg: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            --primary-gradient: linear-gradient(45deg, #ff6b35, #ff8c42);
            --accent-color: #ff6b35;
            --muted-text: #666;
            --success-color: #28a745;
            --warning-color: #ffc107;
        }

        [data-theme="dark"] {
            --bg-color: #0f0f0f;
            --text-color: #e0e0e0;
            --nav-bg: rgba(15, 15, 15, 0.95);
            --card-bg: #1a1a1a;
            --card-shadow: rgba(255, 255, 255, 0.05);
            --faq-bg: #1a1a1a;
            --faq-hover: #2a2a2a;
            --border-color: rgba(255, 255, 255, 0.1);
            --hero-bg: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
            --muted-text: #a0a0a0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: var(--bg-color);
            overflow-x: hidden;
            transition: all 0.3s ease;
        }

        /* Loading Screen */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 1;
            visibility: visible;
            transition: all 0.5s ease;
        }

        .loading.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid var(--border-color);
            border-top: 3px solid var(--accent-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 1rem;
        }

        .loading-text {
            color: var(--text-color);
            font-size: 1.1rem;
            font-weight: 500;
        }

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

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: var(--primary-gradient);
            z-index: 1001;
            transition: width 0.3s ease;
        }

        /* Notification */
        .notification {
            position: fixed;
            top: 100px;
            right: 1rem;
            left: 1rem;
            background: var(--card-bg);
            color: var(--text-color);
            padding: 1rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px var(--card-shadow);
            border: 1px solid var(--border-color);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
            transition: all 0.3s ease;
            text-align: center;
        }

        .notification.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .notification.success {
            border-left: 4px solid var(--success-color);
        }

        .notification.error {
            border-left: 4px solid #dc3545;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--nav-bg);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--border-color);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--text-color);
            text-decoration: none;
            position: relative;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Theme Toggle */
        .theme-toggle {
            background: none;
            border: 2px solid var(--border-color);
            border-radius: 25px;
            padding: 0.5rem;
            cursor: pointer;
            color: var(--text-color);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .theme-toggle:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
            transform: rotate(15deg);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            width: 30px;
            height: 3px;
            background: var(--text-color);
            border-radius: 3px;
            transition: 0.3s;
            transform-origin: 1px;
        }

        .mobile-menu-btn.active span:first-child {
            transform: rotate(45deg);
        }

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

        .mobile-menu-btn.active span:third-child {
            transform: rotate(-45deg);
        }

        /* Navigation Links - Mobile First */
        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: var(--nav-bg);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            padding: 80px 20px 20px;
            list-style: none;
            transition: right 0.3s ease;
            border-left: 1px solid var(--border-color);
        }

        .nav-links.active {
            right: 0;
        }

        .nav-links li {
            margin-bottom: 1rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            font-size: 1.1rem;
            display: block;
            padding: 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-color);
            background: rgba(255, 107, 53, 0.1);
            transform: translateX(5px);
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            position: relative;
            padding-right: 2rem !important;
            cursor: pointer;
        }

        .dropdown-toggle::after {
            content: '▼';
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .dropdown.active .dropdown-toggle::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: var(--faq-bg);
            border-radius: 8px;
            margin-top: 0.5rem;
        }

        .dropdown.active .dropdown-menu {
            max-height: 200px;
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem 1rem;
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .dropdown-item:hover {
            background-color: var(--faq-hover);
            transform: translateX(5px);
        }

        .dropdown-item span {
            display: inline-block;
            width: 20px;
            margin-right: 8px;
            text-align: center;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--hero-bg);
            position: relative;
            overflow: hidden;
            padding: 2rem 1rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(255, 107, 53, 0.05));
            opacity: 0.6;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            text-align: center;
            max-width: 700px;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text-color);
            font-weight: 700;
            opacity: 0;
            animation: slideUp 1s ease 0.5s forwards;
            line-height: 1.2;
            background: linear-gradient(45deg, var(--text-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--muted-text);
            opacity: 0;
            animation: slideUp 1s ease 0.7s forwards;
        }

        .hero-cta {
            opacity: 0;
            animation: slideUp 1s ease 0.9s forwards;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary-gradient);
            color: white;
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        /* Stats Section */
        .stats-section {
            background: var(--card-bg);
            padding: 3rem 1rem;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-color);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--muted-text);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Sections */
        .section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text-color);
            text-align: center;
            position: relative;
            line-height: 1.3;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .service-card {
            background: var(--card-bg);
            padding: 2rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px var(--card-shadow);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gradient);
        }

        .service-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 40px var(--card-shadow);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-color);
            font-weight: 600;
        }

        .service-card p {
            color: var(--muted-text);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Contact Form */
        .contact-form {
            background: var(--card-bg);
            padding: 2rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px var(--card-shadow);
            margin-top: 2rem;
            border: 1px solid var(--border-color);
            position: relative;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 15px 15px 0 0;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-color);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background: var(--bg-color);
            color: var(--text-color);
            font-size: 1rem;
            transition: all 0.3s ease;
            -webkit-appearance: none;
            appearance: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
            transform: translateY(-2px);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        #Names {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-submit {
            background: var(--primary-gradient);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
        }

        /* FAQ Section */
        .faq-container {
            margin-top: 2rem;
        }

        .faq-item {
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px var(--card-shadow);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px var(--card-shadow);
        }

        .faq-question {
            background: var(--faq-bg);
            padding: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            font-weight: 600;
            color: var(--text-color);
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            gap: 1rem;
        }

        .faq-question span:first-child {
            flex: 1;
            line-height: 1.4;
        }

        .faq-question:hover {
            background: var(--faq-hover);
            border-left-color: var(--accent-color);
        }

        .faq-question.active {
            background: var(--accent-color);
            color: white;
            border-left-color: var(--accent-color);
        }

        .faq-answer {
            background: var(--card-bg);
            padding: 0 1.2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            max-height: 300px;
            padding: 1.2rem;
        }

        .faq-toggle {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-toggle.active {
            transform: rotate(45deg);
        }

        /* Business Showcase */
        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--muted-text);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .businesses-showcase {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .business-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px var(--card-shadow);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .business-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff8c42, #ff6b1a);
        }

        .business-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 8px 30px var(--card-shadow);
        }

        .business-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            gap: 1rem;
        }

        .business-logo {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            background: var(--faq-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--accent-color);
            border: 2px solid var(--border-color);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .business-card:hover .business-logo {
            transform: rotate(5deg) scale(1.1);
        }

        .business-info h3 {
            font-size: 1.2rem;
            color: var(--text-color);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .business-type {
            font-size: 0.8rem;
            color: var(--muted-text);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .business-description {
            color: var(--muted-text);
            line-height: 1.5;
            margin: 1rem 0;
            font-size: 0.9rem;
        }

        .business-link {
            display: inline-flex;
            align-items: center;
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 0;
            transition: all 0.3s ease;
            gap: 8px;
            font-size: 0.9rem;
        }

        .business-link:hover {
            color: #ff6b1a;
            transform: translateX(5px);
        }

        .business-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .business-link:hover::after {
            transform: translateX(3px);
        }

        /* Coming Soon State */
        .coming-soon {
            opacity: 0.7;
        }

        .coming-soon .business-link {
            color: #adb5bd;
            cursor: not-allowed;
            pointer-events: none;
        }

        .coming-soon-badge {
            background: var(--warning-color);
            color: #212529;
            font-size: 0.7rem;
            padding: 4px 8px;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
            z-index: 999;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
        }

        /* Footer */
        footer {
            background: var(--text-color);
            color: var(--bg-color);
            text-align: center;
            padding: 3rem 1rem;
            margin-top: 3rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
        }

        footer p {
            font-size: 0.9rem;
            line-height: 1.5;
            opacity: 0.9;
        }

        /* Animations */
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Overlay for mobile menu */
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Tablet Styles */
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 3.5rem;
            }

            .hero p {
                font-size: 1.3rem;
            }

            .section h2 {
                font-size: 2.5rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .businesses-showcase {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            #Names {
                flex-direction: row;
                gap: 1rem;
            }

            .contact-form {
                padding: 2.5rem;
            }

            .form-submit {
                width: auto;
                min-width: 200px;
            }

            .notification {
                right: 2rem;
                left: auto;
                max-width: 400px;
            }
        }

        /* Mobile and Small Tablet Navigation */
        @media (max-width: 1023px) {
            .mobile-menu-btn {
                display: flex;
            }
        }

        /* Desktop Styles */
        @media (min-width: 1024px) {
            .mobile-menu-btn {
                display: none;
            }

            .nav-links {
                position: static;
                width: auto;
                height: auto;
                background: transparent;
                backdrop-filter: none;
                display: flex;
                flex-direction: row;
                padding: 0;
                gap: 2rem;
                align-items: center;
                border: none;
            }

            .nav-links li {
                margin-bottom: 0;
            }

            .nav-links a {
                padding: 0.5rem 1rem;
                font-size: 1rem;
                text-align: left;
            }

            .nav-links a:hover,
            .nav-links a.active {
                transform: none;
                background: transparent;
                color: var(--accent-color);
                position: relative;
            }

            .nav-links a:hover::after,
            .nav-links a.active::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 50%;
                transform: translateX(-50%);
                width: 80%;
                height: 2px;
                background: var(--accent-color);
                border-radius: 1px;
            }

            /* Remove underline from dropdown toggle */
            .dropdown-toggle:hover::after,
            .dropdown-toggle.active::after {
                display: none !important;
            }

            .dropdown {
                position: relative;
            }

            .dropdown-toggle:hover {
                transform: none !important;
                background: transparent !important;
                color: var(--accent-color) !important;
            }

            .dropdown-menu {
                position: absolute;
                top: 100%;
                right: 0;
                background: var(--card-bg);
                border: 1px solid var(--border-color);
                border-radius: 8px;
                box-shadow: 0 4px 20px var(--card-shadow);
                min-width: 180px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.3s ease;
                margin-top: 0.5rem;
                z-index: 1000;
                max-height: none;
            }

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

            .dropdown-item:hover {
                transform: none;
                background-color: var(--faq-hover);
            }

            .hero h1 {
                font-size: 4.5rem;
            }

            .hero p {
                font-size: 1.5rem;
            }

            .section {
                padding: 5rem 2rem;
            }

            .section h2 {
                font-size: 3rem;
            }

            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .businesses-showcase {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .contact-form {
                padding: 3rem;
            }

            .stats-container {
                gap: 3rem;
            }

            .scroll-to-top {
                bottom: 3rem;
                right: 3rem;
                width: 60px;
                height: 60px;
                font-size: 1.4rem;
            }
        }

        /* Large Desktop Styles */
        @media (min-width: 1200px) {
            .hero h1 {
                font-size: 5rem;
            }

            .section {
                padding: 6rem 2rem;
            }

            .services-grid,
            .businesses-showcase {
                gap: 2.5rem;
            }
        }

        /* Touch-friendly tap targets */
        @media (hover: none) and (pointer: coarse) {
            .nav-links a,
            .faq-question,
            .business-link,
            .form-submit,
            .theme-toggle,
            .cta-button {
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .service-card,
            .business-card {
                cursor: pointer;
                -webkit-tap-highlight-color: transparent;
            }
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .loading-spinner {
                animation: none;
            }

            .hero::after {
                animation: none;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --border-color: #000;
                --card-shadow: rgba(0, 0, 0, 0.3);
            }

            [data-theme="dark"] {
                --border-color: #fff;
                --card-shadow: rgba(255, 255, 255, 0.3);
            }
        }

        /* Print styles */
        @media print {
            .loading,
            .progress-bar,
            .notification,
            nav,
            .scroll-to-top,
            .nav-overlay {
                display: none !important;
            }

            .section {
                padding: 1rem 0;
                break-inside: avoid;
            }

            .hero {
                min-height: auto;
                padding: 2rem 0;
            }
        }
        .business-logo {
    /* ... your existing styles ... */
    overflow: hidden; /* Add this line */
    position: relative; /* Add this line */
}

/* Add these new rules */
.business-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will fill the container, may crop image */
    object-position: center;
    transition: all 0.3s ease;
}

/* Alternative: If you want the full image visible */
.business-logo.contain img {
    object-fit: contain; /* Shows entire image, may have padding */
    padding: 4px;
}

/* Update hover effect for images */
.business-card:hover .business-logo img {
    transform: scale(1.1);
}