      /* =============================================================================
         CSS CUSTOM PROPERTIES & THEME SUPPORT
         ============================================================================= */
      :root {
        --primary-color: #222;
        --secondary-color: #286090;
        --accent-color: #b3e5fc;
        --success-color: #43a047;
        --warning-color: #ffe082;
        --info-color: #5bc0de;
        --danger-color: #f44336;
        --background-color: #f5f5f5;
        --container-bg: #fff;
        --text-primary: #333;
        --text-secondary: #666;
        --border-color: #e2e8f0;
        --form-bg: #f8f8f8;
        --form-border: #bbb;
        --car-sales-gradient: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
        
        /* Theme colors */
        --theme-bg: var(--background-color);
        --theme-surface: var(--container-bg);
        --theme-text: var(--text-primary);
        --theme-text-secondary: var(--text-secondary);
        --theme-border: var(--border-color);
        
        /* Responsive breakpoints */
        --mobile-sm: 480px;
        --mobile-md: 768px;
        --tablet: 1024px;
        --desktop: 1200px;
      }

      /* Dark theme variables */
      [data-theme="dark"] {
        --primary-color: #1a1a1a;
        --background-color: #121212;
        --container-bg: #1e1e1e;
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --border-color: #404040;
        --form-bg: #2a2a2a;
        --form-border: #555;
        --accent-color: #81d4fa;
        --secondary-color: #3498db;
        --success-color: #66bb6a;
        --warning-color: #ffb74d;
        --danger-color: #ef5350;
        
        /* Update theme colors for dark mode */
        --theme-bg: var(--background-color);
        --theme-surface: var(--container-bg);
        --theme-text: var(--text-primary);
        --theme-text-secondary: var(--text-secondary);
        --theme-border: var(--border-color);
      }

      /* =============================================================================
         RESET & BASE STYLES
         ============================================================================= */
      *, *::before, *::after {
        box-sizing: border-box;
      }

      html, body {
        height: 100%;
        margin: 0;
        padding: 0;
      }

      body {
        background: var(--theme-bg);
        color: var(--theme-text);
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        min-height: 100vh;
        width: 100vw;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        font-size: 16px;
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transition: background-color 0.3s ease, color 0.3s ease;
      }

      /* =============================================================================
         HEADER STYLES
         ============================================================================= */
      .header {
        background: var(--primary-color);
        color: #fff;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        position: relative;
        min-height: 60px;
        flex-wrap: nowrap;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      }

      .header .logo {
        display: flex;
        align-items: center;
        font-size: 1.4em;
        font-weight: 600;
        flex: 0 0 auto;
        margin-right: 16px;
        text-decoration: none;
        color: inherit;
      }

      .header .logo img {
        height: 132px;
        width: 132px;
        margin-right: 8px;
        object-fit: contain;
      }

      .header-title-center {
        flex: 1 1 0;
        text-align: center;
        font-size: 1.2em;
        font-weight: 600;
        letter-spacing: 0.3px;
        color: var(--accent-color);
        margin: 0;
        z-index: 1;
        pointer-events: none;
        user-select: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .header .right {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 0 0 auto;
      }

      /* =============================================================================
         BURGER MENU STYLES
         ============================================================================= */
      .burger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        margin-left: 12px;
        z-index: 1001;
        border-radius: 4px;
        transition: background-color 0.2s;
        min-width: 44px;
        min-height: 44px;
      }

      .burger:hover {
        background: rgba(255,255,255,0.1);
      }

      .burger:focus {
        outline: 2px solid var(--accent-color);
        outline-offset: 2px;
      }

      .burger span {
        display: block;
        height: 3px;
        width: 24px;
        background: #fff;
        margin: 3px auto;
        border-radius: 2px;
        transition: 0.3s ease;
        transform-origin: center;
      }

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

      .burger.active span:nth-child(2) {
        opacity: 0;
      }

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

      /* =============================================================================
         SIDE MENU STYLES
         ============================================================================= */
      .side-menu-backdrop {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        backdrop-filter: blur(2px);
      }

      .side-menu {
        position: fixed;
        right: -320px;
        top: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: var(--secondary-color);
        color: #fff;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        z-index: 1000;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.3) transparent;
      }

      .side-menu::-webkit-scrollbar {
        width: 6px;
      }

      .side-menu::-webkit-scrollbar-track {
        background: transparent;
      }

      .side-menu::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.3);
        border-radius: 3px;
      }

      .side-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(255,255,255,0.5);
      }

      .side-menu.open {
        right: 0;
      }

      .side-menu .side-header {
        background: #204d74;
        padding: 20px 18px 16px 18px;
        font-size: 1.1em;
        font-weight: 600;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
        flex-shrink: 0;
        position: sticky;
        top: 0;
        z-index: 10;
      }

      .side-menu .side-header img {
        height: 28px;
        width: 28px;
        object-fit: contain;
      }

      .side-menu .side-links {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 0 12px;
        min-height: 0;
        padding-bottom: 20px;
      }

      .side-menu .side-link {
        color: #fff;
        text-decoration: none;
        padding: 14px 16px;
        font-size: 1em;
        border-radius: 6px;
        margin: 1px 0;
        font-weight: 500;
        transition: background 0.2s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
        word-break: break-word;
        min-height: 44px;
        flex-shrink: 0;
      }

      .side-menu .side-link.active,
      .side-menu .side-link:hover,
      .side-menu .side-link:focus {
        background: #204d74;
        outline: none;
      }

      /* =============================================================================
         THEME DROPDOWN STYLES
         ============================================================================= */
      .theme-dropdown {
        position: relative;
        margin: 4px 12px 8px 12px;
        flex-shrink: 0;
      }

      .theme-toggle {
        color: #fff;
        text-decoration: none;
        padding: 14px 16px;
        font-size: 1em;
        border-radius: 6px;
        font-weight: 500;
        transition: background 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
        cursor: pointer;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
      }

      .theme-toggle:hover,
      .theme-toggle:focus {
        background: #204d74;
        outline: none;
      }

      .theme-toggle .arrow {
        transition: transform 0.2s ease;
        font-size: 0.8em;
      }

      .theme-toggle.active .arrow {
        transform: rotate(180deg);
      }

      .theme-options {
        display: none;
        background: #1a4a6b;
        border-radius: 6px;
        margin-top: 4px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      }

      .theme-options.show {
        display: block;
        animation: slideDown 0.2s ease;
      }

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

      .theme-option {
        color: #fff;
        text-decoration: none;
        padding: 12px 20px;
        font-size: 0.95em;
        font-weight: 500;
        transition: background 0.2s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        min-height: 40px;
      }

      .theme-option:hover,
      .theme-option:focus {
        background: #204d74;
        outline: none;
      }

      .theme-option.active {
        background: #204d74;
        position: relative;
      }

      .theme-option.active::after {
        content: '✓';
        margin-left: auto;
        font-weight: bold;
        color: var(--accent-color);
      }

      .theme-icon {
        font-size: 1.1em;
        width: 16px;
        text-align: center;
      }

      /* =============================================================================
         MAIN CONTENT STYLES
         ============================================================================= */
      .car-sales-container {
        max-width: var(--desktop);
        margin: 0 auto;
        flex: 1 0 auto;
        width: 100%;
        padding: 0;
      }

      /* Hero Section */
      .hero-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: #fff;
        padding: 80px 24px;
        text-align: center;
        margin-bottom: 0;
        position: relative;
        overflow: hidden;
      }

      .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
                    linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
                    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.05) 75%),
                    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.05) 75%);
        background-size: 50px 50px;
        background-position: 0 0, 0 25px, 25px -25px, -25px 0px;
        opacity: 0.1;
        z-index: 0;
      }

      .hero-content {
        position: relative;
        z-index: 1;
      }

      .hero-content h1 {
        font-size: 3.2em;
        font-weight: 700;
        margin: 0 0 20px 0;
        letter-spacing: -0.5px;
        line-height: 1.1;
      }

      .hero-content .subtitle {
        font-size: 1.4em;
        margin-bottom: 30px;
        color: var(--accent-color);
        font-weight: 400;
        line-height: 1.4;
      }

      .hero-content .description {
        font-size: 1.2em;
        margin-bottom: 50px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
        opacity: 0.95;
      }

      /* Car Sales Stats */
      .car-sales-stats {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 40px;
      }

      .car-sales-stat {
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        padding: 20px 25px;
        border-radius: 12px;
        text-align: center;
        border: 1px solid rgba(255,255,255,0.2);
        min-width: 160px;
      }

      .car-sales-stat-number {
        font-size: 2.2em;
        font-weight: 700;
        color: var(--accent-color);
        display: block;
        margin-bottom: 5px;
      }

      .car-sales-stat-label {
        font-size: 0.9em;
        opacity: 0.9;
      }

      /* CTA Buttons */
      .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 40px;
      }

      .cta-button {
        display: inline-block;
        background: var(--success-color);
        color: #fff;
        text-decoration: none;
        padding: 18px 36px;
        font-size: 1.1em;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        min-width: 180px;
        text-align: center;
      }

      .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        background: #388e3c;
      }

      .cta-button.secondary {
        background: transparent;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
      }

      .cta-button.secondary:hover {
        background: var(--accent-color);
        color: var(--primary-color);
      }

      .cta-button.car-sales-button {
        background: var(--car-sales-gradient);
        color: #fff;
      }

      .cta-button.car-sales-button:hover {
        box-shadow: 0 8px 24px rgba(25, 118, 210, 0.4);
      }

      /* =============================================================================
         SECTIONS & CONTENT STYLES
         ============================================================================= */
      .sections-container {
        background: var(--theme-bg);
        padding: 0;
      }

      .section {
        background: var(--theme-surface);
        margin: 40px 24px;
        border-radius: 16px;
        padding: 50px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: 1px solid var(--theme-border);
      }

      .section:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.12);
      }

      .section-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
      }

      .section-icon {
        font-size: 3em;
        color: var(--secondary-color);
        flex-shrink: 0;
      }

      .section h2 {
        margin: 0;
        font-size: 2.5em;
        font-weight: 600;
        color: var(--theme-text);
        text-align: center;
        flex: 1;
      }

      .section p.section-intro {
        font-size: 1.2em;
        line-height: 1.7;
        color: var(--theme-text-secondary);
        margin-bottom: 40px;
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
      }

      /* Car Sales Features Grid */
      .car-sales-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }

      .car-sales-card {
        background: var(--form-bg);
        padding: 35px;
        border-radius: 16px;
        border: 1px solid var(--theme-border);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .car-sales-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--car-sales-gradient);
        transform: scaleX(0);
        transition: transform 0.3s ease;
      }

      .car-sales-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.15);
      }

      .car-sales-card:hover::before {
        transform: scaleX(1);
      }

      .car-sales-card-header {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 22px;
      }

      .car-sales-card-icon {
        font-size: 2.5em;
        color: var(--secondary-color);
        flex-shrink: 0;
      }

      .car-sales-card h3 {
        margin: 0;
        font-size: 1.5em;
        font-weight: 600;
        color: var(--theme-text);
      }

      .car-sales-card p {
        margin: 0 0 20px 0;
        font-size: 1.05em;
        color: var(--theme-text-secondary);
        line-height: 1.6;
      }

      .car-sales-feature-list {
        list-style: none;
        padding: 0;
        margin: 20px 0 0 0;
      }

      .car-sales-feature-list li {
        padding: 8px 0;
        color: var(--theme-text-secondary);
        position: relative;
        padding-left: 25px;
        font-size: 0.95em;
      }

      .car-sales-feature-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--secondary-color);
        font-weight: bold;
        font-size: 1.1em;
      }

      /* Car Sales Process Steps */
      .car-sales-process {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }

      .process-step {
        background: var(--form-bg);
        padding: 30px;
        border-radius: 16px;
        border: 1px solid var(--theme-border);
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
      }

      .process-step:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.12);
      }

      .process-step::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--secondary-color) 0%, var(--info-color) 100%);
        border-radius: 16px 16px 0 0;
      }

      .step-number {
        width: 60px;
        height: 60px;
        background: var(--secondary-color);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6em;
        font-weight: bold;
        margin: 0 auto 20px;
        box-shadow: 0 4px 12px rgba(40, 96, 144, 0.3);
      }

      .process-step h3 {
        margin: 0 0 15px 0;
        font-size: 1.3em;
        font-weight: 600;
        color: var(--theme-text);
      }

      .process-step p {
        margin: 0;
        color: var(--theme-text-secondary);
        line-height: 1.5;
      }

      /* Car Sales Demo Section */
      .car-sales-demo {
        background: var(--form-bg);
        border-radius: 16px;
        padding: 40px;
        text-align: center;
        margin: 40px 0;
        border: 1px solid var(--theme-border);
        position: relative;
        overflow: hidden;
      }

      .car-sales-demo::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(25, 118, 210, 0.03) 0%, rgba(21, 101, 192, 0.03) 100%);
        z-index: 0;
      }

      .car-sales-demo-content {
        position: relative;
        z-index: 1;
      }

      .car-sales-demo h2 {
        font-size: 2.2em;
        font-weight: 600;
        margin: 0 0 20px 0;
        color: var(--theme-text);
      }

      .car-sales-demo p {
        font-size: 1.1em;
        color: var(--theme-text-secondary);
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
      }

      .car-sales-placeholder {
        background: linear-gradient(135deg, var(--theme-border) 0%, var(--form-bg) 100%);
        height: 500px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--theme-text-secondary);
        font-size: 1.2em;
        margin: 30px 0;
        border: 2px dashed var(--theme-border);
        position: relative;
        overflow: hidden;
      }

      .car-sales-placeholder::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        height: 80px;
        background: var(--car-sales-gradient);
        border-radius: 8px;
        opacity: 0.3;
      }

      .car-sales-placeholder::after {
        content: '';
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        height: 300px;
        background: linear-gradient(135deg, var(--form-bg) 0%, var(--theme-border) 100%);
        border-radius: 8px;
        opacity: 0.5;
      }

      /* Status Indicators */
      .lead-status {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 16px;
        font-size: 0.8em;
        font-weight: 600;
        text-transform: uppercase;
      }

      .lead-status.hot {
        background: rgba(244, 67, 54, 0.1);
        color: var(--danger-color);
        border: 1px solid var(--danger-color);
      }

      .lead-status.warm {
        background: rgba(255, 193, 7, 0.1);
        color: #f57f17;
        border: 1px solid #f57f17;
      }

      .lead-status.cold {
        background: rgba(33, 150, 243, 0.1);
        color: var(--info-color);
        border: 1px solid var(--info-color);
      }

      .lead-status.sold {
        background: rgba(67, 160, 71, 0.1);
        color: var(--success-color);
        border: 1px solid var(--success-color);
      }

      /* Benefits Section */
      .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }

      .benefit-card {
        background: linear-gradient(135deg, var(--info-color) 0%, var(--secondary-color) 100%);
        color: #fff;
        padding: 35px;
        border-radius: 16px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .benefit-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        transition: all 0.6s ease;
        opacity: 0;
      }

      .benefit-card:hover::before {
        opacity: 1;
        transform: scale(1.2);
      }

      .benefit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
      }

      .benefit-icon {
        font-size: 2.8em;
        margin-bottom: 20px;
        display: block;
      }

      .benefit-card h4 {
        margin: 0 0 15px 0;
        font-size: 1.4em;
        font-weight: 600;
      }

      .benefit-card p {
        margin: 0;
        opacity: 0.9;
        line-height: 1.5;
        font-size: 1.05em;
      }

      /* CTA Section */
      .cta-section {
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        color: #fff;
        text-align: center;
        padding: 60px 24px;
        margin: 40px 24px;
        border-radius: 16px;
        position: relative;
        overflow: hidden;
      }

      .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
        z-index: 0;
      }

      .cta-content {
        position: relative;
        z-index: 1;
      }

      .cta-section h2 {
        font-size: 2.2em;
        font-weight: 700;
        margin: 0 0 20px 0;
        color: #fff;
      }

      .cta-section p {
        font-size: 1.1em;
        margin: 0 0 30px 0;
        opacity: 0.9;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
      }

      /* =============================================================================
         FOOTER STYLES - CLEAN & SIMPLE
         ============================================================================= */
      .footer-enhanced {
        background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a52 100%);
        color: #ffffff;
        margin-top: 60px;
        border-top: 4px solid var(--secondary-color);
      }

      .footer-container {
        max-width: var(--desktop);
        margin: 0 auto;
        padding: 40px 24px;
      }

      /* Company Section at Top */
      .footer-company-section {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

    .footer-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .footer-logo-img {
      height: 180px;  /* Increase from 40px to match your other page */
      width: 180px;   /* Increase from 40px to match your other page */
      object-fit: contain;
    }
      .footer-logo h3 {
        margin: 0;
        font-size: 1.8em;
        font-weight: 700;
        color: var(--accent-color);
      }

    .footer-description {
      font-size: 1.1em;
      line-height: 1.6;
      margin-top: 0;  /* Add this to ensure no top margin */
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

      .social-links {
        display: flex;
        justify-content: center;
        gap: 12px;
      }

      .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .social-link:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      }

      .social-icon {
        font-size: 1.2em;
      }
    .social-icon-svg {
      width: 24px;
      height: 24px;
      display: block;
      filter: brightness(0) invert(1); /* Makes sure icons are white */
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .social-link:hover .social-icon-svg {
      transform: scale(1.1);
      opacity: 0.8;
    }

    /* If you want to ensure icons stay visible in dark mode */
    [data-theme="dark"] .social-icon-svg {
      filter: brightness(0) invert(1);
    }

    /* Optional: Add color on hover for each platform */
    .social-link:hover .social-icon-svg {
      filter: none; /* Remove the white filter to show original colors on hover */
    }
    .footer-links-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      margin-top: 40px;  /* Add this line to create space above the Services/Support/Company section */
      margin-bottom: 40px;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

      .footer-column {
        text-align: left;
      }

      .footer-column h4 {
        margin: 0 0 20px 0;
        font-size: 1.2em;
        font-weight: 600;
        color: var(--accent-color);
        border-bottom: 2px solid var(--secondary-color);
        padding-bottom: 8px;
      }

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

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

      .footer-links a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-size: 0.95em;
        transition: all 0.2s ease;
        display: block;
        padding: 4px 0;
      }

      .footer-links a:hover {
        color: var(--accent-color);
        padding-left: 8px;
        text-decoration: underline;
      }

      /* Legal Links Row - Centered */
      .footer-legal-row {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 30px;
        text-align: center;
      }

      .footer-legal-row a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.9em;
        transition: color 0.2s ease;
        white-space: nowrap;
      }

      .footer-legal-row a:hover {
        color: var(--accent-color);
        text-decoration: underline;
      }

      .separator {
        color: rgba(255, 255, 255, 0.4);
        font-weight: bold;
        margin: 0 8px;
      }

      /* Copyright Section - Centered */
      .footer-copyright {
        text-align: center;
      }

      .footer-copyright p {
        margin: 8px 0;
        font-size: 0.9em;
        color: rgba(255, 255, 255, 0.8);
      }

    .footer-tagline {
      font-style: italic;
      color: var(--accent-color) !important;
      font-size: 0.95em !important;
    }
    
      .faq-section {
        background: var(--theme-surface);
        margin: 40px 24px;
        border-radius: 16px;
        padding: 40px 30px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        border: 1px solid var(--theme-border);
      }

      .faq-section h2 {
        margin-top: 0;
        font-size: 2em;
        font-weight: 600;
        color: var(--theme-text);
        margin-bottom: 10px;
      }

      .faq-section p.faq-intro {
        margin: 0 0 25px 0;
        color: var(--theme-text-secondary);
        font-size: 1rem;
      }

      .faq-list {
        margin-top: 20px;
      }

      .faq-item {
        border-top: 1px solid var(--theme-border);
        padding: 18px 0;
      }

      .faq-item:first-of-type {
        border-top: none;
      }

      .faq-question {
        font-weight: 600;
        font-size: 1.02rem;
        color: var(--theme-text);
        display: flex;
        align-items: flex-start;
        gap: 10px;
        cursor: pointer;
      }

      .faq-question-toggle {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid var(--secondary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        color: var(--secondary-color);
        margin-top: 2px;
        transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
      }

      .faq-item.open .faq-question-toggle {
        background: var(--secondary-color);
        color: #fff;
        transform: rotate(90deg);
      }

      .faq-answer {
        margin-top: 10px;
        color: var(--theme-text-secondary);
        font-size: 0.97rem;
        line-height: 1.6;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease-out;
      }

      .faq-item.open .faq-answer {
        max-height: 500px; /* enough to show typical content */
      }

      .faq-answer p {
        margin: 0;
      }

      /* Reviews horizontal scroll */
      .reviews-section {
        max-width: var(--desktop);
        margin: 40px auto;
        padding: 0 16px 10px 16px;
      }
.reviews-section-header {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the container horizontally */
  margin-bottom: 16px;
  text-align: center;
}

.reviews-section-title {
  display: flex;
  align-items: center;
  justify-content: center; /* Pack icon and text in the center */
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-section-title-icon {
  font-size: 1.8em; /* Slightly larger icon */
}

.reviews-section-title h2 {
  font-size: 2em; /* Larger, bolder title */
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
  line-height: 1.2;
}


.reviews-section-subtitle {
  font-size: 1.1em;
  color: var(--text-secondary);
  text-align: center;     /* Center the text itself */
  max-width: 700px;       /* Stop it from getting too wide */
  margin: 0 auto 30px auto; /* Center the block and add spacing below */
  line-height: 1.6;
}
      .reviews-section h2 {
        font-size: 1.6em;
        margin-bottom: 16px;
        color: var(--text-primary);
      }

      .reviews-scroll-wrapper {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 10px 4px 16px 4px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(0,0,0,0.25) transparent;
      }

      .reviews-scroll-wrapper::-webkit-scrollbar {
        height: 6px;
      }

      .reviews-scroll-wrapper::-webkit-scrollbar-track {
        background: transparent;
      }

      .reviews-scroll-wrapper::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.25);
        border-radius: 3px;
      }

      /* Each review card */
      .review-card {
        min-width: 260px;
        max-width: 320px;
        flex: 0 0 auto;
        background: var(--container-bg);
        border-radius: 10px;
        border: 1px solid var(--border-color);
        padding: 16px 18px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        scroll-snap-align: start;
      }

      .review-text {
        font-size: 0.95em;
        color: var(--text-secondary);
        margin-bottom: 10px;
      }

      .review-author {
        font-size: 0.9em;
        font-weight: 600;
        color: var(--text-primary);
      }
      
/* Subscription Plans Section */
.plans {
padding: 40px 20px;
background: var(--theme-bg);
}

.plans h2 {
text-align: center;
font-size: 2em;
margin-bottom: 30px;
color: var(--theme-text);
}

.plan-cards {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
max-width: var(--desktop);
margin: 0 auto;
}

.plan {
background: var(--theme-surface);
border: 1px solid var(--theme-border);
border-radius: 12px;
flex: 1 1 280px;
max-width: 320px;
padding: 30px 20px;
text-align: center;
transition: all 0.3s ease;
position: relative;
}

.plan:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.plan h3 {
margin-top: 0;
font-size: 1.5em;
color: var(--theme-text);
}

.plan .price {
font-size: 1.8em;
color: var(--secondary-color);
margin: 10px 0;
font-weight: 700;
}

.plan ul {
list-style: none;
padding: 0;
margin: 20px 0;
text-align: left;
}

.plan ul li {
margin-bottom: 12px;
font-size: 0.95em;
color: var(--theme-text-secondary);
padding-left: 20px;
position: relative;
}

.plan ul li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--success-color);
font-weight: bold;
}

.plan button {
background: var(--success-color);
border: none;
border-radius: 6px;
padding: 12px 24px;
font-size: 1em;
font-weight: 600;
color: white;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
}

.plan button:hover {
background: #388e3c;
transform: translateY(-1px);
}

.plan.popular {
border: 2px solid var(--secondary-color);
transform: scale(1.05);
}

.plan.popular::before {
content: "Most Popular";
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--secondary-color);
color: #fff;
padding: 4px 16px;
font-size: 0.9em;
border-radius: 20px;
font-weight: 600;
}

/* What's Included Section */
.included {
padding: 40px 20px;
background: var(--theme-surface);
}

.included h2 {
text-align: center;
font-size: 2em;
margin-bottom: 30px;
color: var(--theme-text);
}

.included-table {
width: 100%;
max-width: 1000px;
margin: 0 auto;
border-collapse: collapse;
background: var(--theme-surface);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.included-table th,
.included-table td {
border: 1px solid var(--theme-border);
padding: 12px 8px;
text-align: center;
font-size: 0.95em;
}

.included-table th {
background: var(--form-bg);
color: var(--theme-text);
font-weight: 600;
}

.included-table td {
color: var(--theme-text-secondary);
}
/* Comparison Table Styles */
.comparison-section { overflow-x: auto; margin: 40px 0; }
.comp-table { width: 100%; border-collapse: collapse; background: var(--container-bg); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.comp-table th, .comp-table td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--border-color); }
.comp-table th { background: var(--secondary-color); color: #fff; font-weight: 600; text-transform: uppercase; font-size: 0.9em; letter-spacing: 1px; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table td:first-child { font-weight: 600; color: var(--text-primary); }
.check-mark { color: var(--success-color); font-weight: bold; font-size: 1.2em; }
.cross-mark { color: #ccc; font-size: 1.2em; }

.integration-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 30px; }
.integration-pill { background: var(--form-bg); border: 1px solid var(--theme-border); padding: 12px 24px; border-radius: 30px; font-weight: 600; color: var(--theme-text-secondary); display: flex; align-items: center; gap: 10px; transition: all 0.3s ease; }
.integration-pill:hover { background: #fff; border-color: var(--secondary-color); color: var(--secondary-color); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }



      @media (max-width: 768px) {
        .faq-section {
          margin: 30px 16px;
          padding: 28px 20px;
        }
      }
      
      


    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.4em;
      }
      
      .hero-content .subtitle {
        font-size: 1.2em;
      }
      
      .hero-section {
        padding: 60px 16px;
      }
      
      .section {
        margin: 24px 16px;
        padding: 30px 20px;
      }

      .section h2 {
        font-size: 2em;
      }

      .section-header {
        flex-direction: column;
        text-align: center;
      }
      
      .car-sales-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .car-sales-process {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .car-sales-stats {
        flex-direction: column;
        align-items: center;
      }

      .cta-section {
        margin: 24px 16px;
        padding: 40px 20px;
      }

      .cta-section h2 {
        font-size: 1.8em;
      }
      
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .cta-button {
        width: 100%;
        max-width: 300px;
      }

      /* Footer responsive */
      .footer-container {
        padding: 30px 16px;
      }
      
      .footer-links-row {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .footer-column {
        text-align: center;
      }
      
      .footer-legal-row {
        flex-direction: column;
        gap: 12px;
      }
      
      .footer-legal-row .separator {
        display: none;
      }
    }
@media (max-width: 768px) {
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 12px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
}
.mobile-cta-btn {
  background: var(--success-color);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  flex: 1;
  text-align: center;
  margin-left: 10px;
}
/* Add padding to body so footer doesn't hide content */
body { padding-bottom: 70px; }
}
@media (min-width: 769px) {
.mobile-sticky-cta { display: none; }
}
    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 2em;
      }
      
      .section h2 {
        font-size: 1.6em;
      }
      
      .section {
        padding: 24px 16px;
      }

      .car-sales-card {
        padding: 25px;
      }

      .process-step {
        padding: 20px;
      }

      .benefit-card {
        padding: 25px;
      }

      /* Footer mobile */
      .footer-logo h3 {
        font-size: 1.5em;
      }
      
      .footer-description {
        font-size: 1em;
      }
      
      .social-links {
        flex-wrap: wrap;
      }
    }

    /* =============================================================================
       DARK THEME ADJUSTMENTS
       ============================================================================= */
    [data-theme="dark"] .footer-enhanced {
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    }

    /* =============================================================================
       ACCESSIBILITY & PERFORMANCE
       ============================================================================= */
    /* iOS specific fixes */
    @supports (-webkit-touch-callout: none) {
      .side-menu {
        height: -webkit-fill-available;
      }
      
      body.menu-open {
        position: fixed;
        width: 100%;
        overflow: hidden;
      }
    }

    /* Print styles */
    @media print {
      .header,
      .burger,
      .side-menu,
      .side-menu-backdrop,
      .footer-enhanced {
        display: none !important;
      }
      
      .car-sales-container {
        max-width: none;
        width: 100%;
      }
      
      .section {
        margin: 0;
        box-shadow: none;
        page-break-inside: avoid;
      }
    }

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

