/* Reset and Base Styles */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
		
		.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

        :root {
            --primary: #3b82f6;
            --primary-hover: #2563eb;
            --secondary: #10b981;
            --secondary-hover: #059669;
            --accent: #f59e0b;
            --background: #ffffff;
            --foreground: #1f2937;
            --muted: #9ca3af;
            --muted-foreground: #6b7280;
            --border: #e5e7eb;
            --radius: 0.5rem;
            --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        html {
            font-family: var(--font-sans);
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.5;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            font-family: inherit;
            cursor: pointer;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* Header Styles */
        .header {
            position: sticky;
            top: 0;
            z-index: 50;
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 4rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.25rem;
        }

        .logo svg {
            width: 2rem;
            height: 2rem;
            color: var(--primary);
        }

        .nav-desktop {
            display: none;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }

        .nav-link {
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        /* Tooltip styles */
        .tooltip {
            position: relative;
            cursor: pointer;
        }

        .tooltip:hover::after {
            content: "Coming Soon!";
            display: block;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 8px;
            padding: 6px 10px;
            background-color: #e0f2e9;
            color: #1e5937;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            border-radius: 4px;
            border: 1px solid #1e5937;
            z-index: 9999;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            pointer-events: none;
        }

        /* Arrow for the tooltip */
        .tooltip:hover::before {
            content: "";
            display: block;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-bottom-color: #1e5937;
            margin-top: -4px;
            z-index: 9999;
            pointer-events: none;
        }

        /* Mobile tooltip adjustments */
        .mobile-nav-link.tooltip:hover::after {
            top: 50%;
            left: auto;
            right: 0;
            transform: translateY(-50%);
            margin-right: 30px;
            margin-top: 0;
            background-color: #e0f2e9;
            color: #1e5937;
            border: 1px solid #1e5937;
        }

        .mobile-nav-link.tooltip:hover::before {
            top: 50%;
            left: auto;
            right: 24px;
            transform: translateY(-50%) rotate(-90deg);
            margin-top: 0;
            border-bottom-color: #1e5937;
        }
        
        /* Footer tooltip adjustments */
        .footer-nav-link.tooltip:hover::after {
            top: auto;
            bottom: 100%;
            margin-top: 0;
            margin-bottom: 8px;
            background-color: #e0f2e9;
            color: #1e5937;
            border: 1px solid #1e5937;
        }
        
        .footer-nav-link.tooltip:hover::before {
            top: auto;
            bottom: 100%;
            margin-top: 0;
            margin-bottom: -4px;
            border-bottom-color: transparent;
            border-top-color: #1e5937;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .menu-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            background-color: transparent;
            color: var(--foreground);
        }

        .menu-button svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .primary-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            font-weight: 500;
            background-color: var(--primary);
            color: white;
            border: none;
            transition: background-color 0.2s;
        }

        .primary-button:hover {
            background-color: var(--primary-hover);
        }

        .secondary-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            font-weight: 500;
            background-color: white;
            color: var(--foreground);
            border: 1px solid var(--border);
            transition: background-color 0.2s, border-color 0.2s;
        }

        .secondary-button:hover {
            background-color: #f9fafb;
            border-color: var(--muted);
        }

        .mobile-menu {
            position: fixed;
            top: 4rem;
            left: 0;
            width: 100%;
            height: calc(100% - 4rem);
            background-color: var(--background);
            padding: 1.5rem;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
            z-index: 40;
            overflow-y: auto;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            list-style: none;
            margin-bottom: 2rem;
        }

        .mobile-nav-link {
            font-size: 1.125rem;
            font-weight: 500;
        }

        /* Hero Section Styles */
        .hero {
            position: relative;
            padding: 6rem 0;
            overflow: hidden;
            background: linear-gradient(to bottom right, #eef2ff, #ffffff);
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 48rem;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.375rem 0.75rem;
            background-color: rgba(59, 130, 246, 0.1);
            color: var(--primary);
            border-radius: 999px;
            font-weight: 500;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
        }

        .hero-badge svg {
            width: 1rem;
            height: 1rem;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.3rem;
            background: linear-gradient(to right, #1a365d, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-tagline {
            font-size: 1.25rem;
            color: var(--muted-foreground);
            margin-bottom: 1.5rem;
            max-width: 42rem;
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--muted-foreground);
            margin-bottom: 2.5rem;
            max-width: 42rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 48rem;
    height: auto;
    border-radius: var(--radius);
    overflow: visible; /* Changed from hidden to allow shadow to extend outside */
    /* Box shadow removed from here */
    padding-bottom: 1.5rem;
}

.hero-image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    background-color: transparent;
    display: block;
    margin: 0 auto;
    /* Add shadow directly to the image */
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.1)) drop-shadow(0 10px 10px rgba(0, 0, 0, 0.04));
    /* Alternative if more control needed */
    /* box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); */
}

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .blob {
            position: absolute;
            width: 20rem;
            height: 20rem;
            border-radius: 999px;
            opacity: 0.2;
            filter: blur(80px);
        }

        .blob-1 {
            top: -5rem;
            right: -5rem;
            background-color: var(--primary);
        }

        .blob-2 {
            bottom: -5rem;
            left: -5rem;
            background-color: var(--secondary);
        }

        /* Feature Section Styles */
        .features {
            padding: 6rem 0;
            background-color: #f9fafb;
        }

        .section-header {
            text-align: center;
            max-width: 48rem;
            margin: 0 auto 4rem;
        }

        .section-subtitle {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--muted-foreground);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
        }

        .feature-card {
            padding: 1.5rem;
            border-radius: var(--radius);
            background-color: white;
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .feature-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            border-radius: var(--radius);
            background-color: rgba(59, 130, 246, 0.1);
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .feature-icon svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .feature-description {
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        /* Testimonial Section Styles */
        .testimonials {
            padding: 6rem 0;
        }

        .testimonial-carousel {
            position: relative;
            margin-top: 4rem;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-slide {
            flex: 0 0 100%;
            padding: 0 1rem;
        }

        .testimonial-card {
            background-color: white;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .testimonial-content {
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 999px;
            overflow: hidden;
            background-color: #f3f4f6;
        }

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-weight: 600;
        }

        .author-title {
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .testimonial-dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 999px;
            background-color: var(--border);
            transition: width 0.3s, background-color 0.3s;
            cursor: pointer;
        }

        .testimonial-dot.active {
            width: 1.5rem;
            background-color: var(--primary);
        }

        .testimonial-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 1rem;
            pointer-events: none;
        }

        .testimonial-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            border-radius: 999px;
            background-color: white;
            color: var(--foreground);
            border: 1px solid var(--border);
            cursor: pointer;
            pointer-events: auto;
            transition: background-color 0.2s;
        }

        .testimonial-arrow:hover {
            background-color: #f9fafb;
        }

        .testimonial-arrow svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        /* Donate Section Styles */
        .donate {
            padding: 6rem 0;
            background-color: #f9fafb;
        }

        .donate-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 64rem;
            margin: 0 auto;
            background-color: white;
            border-radius: var(--radius);
            padding: 3rem 1.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .donate-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .donate-description {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            margin-bottom: 2.5rem;
            max-width: 42rem;
        }

        .donate-tiers {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1rem;
            width: 100%;
            max-width: 32rem;
            margin-bottom: 2.5rem;
        }

        .donate-tier {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            cursor: pointer;
            transition: border-color 0.2s, background-color 0.2s;
        }

        .donate-tier.active {
            border-color: var(--primary);
            background-color: rgba(59, 130, 246, 0.05);
        }

        .donate-tier-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .donate-tier-amount {
            font-weight: 600;
            font-size: 1.125rem;
        }

        .donate-tier-description {
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        .donate-tier-radio {
            width: 1.25rem;
            height: 1.25rem;
            border-radius: 999px;
            border: 2px solid var(--border);
            position: relative;
        }

        .donate-tier.active .donate-tier-radio {
            border-color: var(--primary);
        }

        .donate-tier.active .donate-tier-radio::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0.625rem;
            height: 0.625rem;
            border-radius: 999px;
            background-color: var(--primary);
        }

        /* Footer Styles */
        .footer {
            padding: 4rem 0;
            background-color: #1f2937;
            color: white;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo svg {
            width: 2rem;
            height: 2rem;
            color: white;
        }

        .footer-description {
            color: #d1d5db;
            margin-bottom: 1.5rem;
            max-width: 20rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 999px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: background-color 0.2s;
        }

        .footer-social-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .footer-social-link svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .footer-nav {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .footer-nav-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-nav-title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .footer-nav-link {
            color: #d1d5db;
            transition: color 0.2s;
        }

        .footer-nav-link:hover {
            color: white;
        }

        .footer-bottom {
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-copyright {
            color: #9ca3af;
            font-size: 0.875rem;
        }

        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-bottom-link {
            color: #d1d5db;
            font-size: 0.875rem;
            transition: color 0.2s;
        }

        .footer-bottom-link:hover {
            color: white;
        }

        /* Responsive Styles */
        @media (min-width: 640px) {
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .donate-tiers {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 3.5rem;
            }

            .testimonial-slide {
                flex: 0 0 50%;
            }
        }

        @media (min-width: 1024px) {
            .nav-desktop {
                display: flex;
            }

            .menu-button {
                display: none;
            }

            .feature-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .testimonial-slide {
                flex: 0 0 33.333%;
            }

            .footer-container {
                grid-template-columns: 2fr 3fr;
            }

            .footer-nav {
                grid-template-columns: repeat(4, 1fr);
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        @media (min-width: 1280px) {
            .feature-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
		
	  /* Ensure feature cards are grid-aligned */
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
	
	/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: white;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 50%;
    max-width: 32rem;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.popup-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--foreground);
}

.close-popup {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--muted-foreground);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-body {
    padding: 1.5rem;
}

.popup-body p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.email-signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 1rem;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}

.signup-button {
    width: 100%;
}

.skip-link {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: underline;
    margin-top: 1rem;
}

.skip-link:hover {
    color: var(--foreground);
}

@media (max-width: 768px) {
    .popup-content {
        width: 90%;
    }
}

/* Email tooltip styles - with higher specificity */
.footer-nav-link.email-tooltip {
    position: relative !important;
    cursor: pointer !important;
}

.footer-nav-link.email-tooltip:hover::after {
    content: "support@camstudio.org" !important;
    display: block !important;
    position: absolute !important;
    bottom: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-bottom: 8px !important;
    padding: 6px 10px !important;
    background-color: #fff3e0 !important; /* Light orange background */
    color: #e65100 !important; /* Dark orange text */
    font-size: 12px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    border-radius: 4px !important;
    border: 1px solid #f57c00 !important; /* Medium orange border */
    z-index: 9999 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    pointer-events: none !important;
}

/* Arrow for the email tooltip */
.footer-nav-link.email-tooltip:hover::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    bottom: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border: 6px solid transparent !important;
    border-top-color: #f57c00 !important; /* Medium orange, same as border */
    margin-bottom: -4px !important;
    z-index: 9999 !important;
    pointer-events: none !important;
}

/* Mobile email tooltip adjustments */
@media (max-width: 768px) {
    .footer-nav-link.email-tooltip:hover::after {
        left: 0 !important;
        transform: none !important;
        margin-left: -10px !important;
    }
    
    .footer-nav-link.email-tooltip:hover::before {
        left: 20px !important;
        transform: none !important;
    }
}

/* Donate page specifics */
    .donate-cta-box h2 {
        font-size: 1.75rem;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 1rem;
        color: var(--primary);
    }
    
    .donate-cta-box p {
        margin-bottom: 1.5rem;
        max-width: 38rem;
        margin-left: auto;
        margin-right: auto;
    }
	
	    .roadmap-section {
        margin-bottom: 3rem;
    }
    
    .roadmap-section h2 {
        font-size: 1.75rem;
        font-weight: 700;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--border);
        margin-bottom: 1.5rem;
    }
	
	.donate-button {
        padding: 0.75rem 1.5rem;
        font-size: 1.125rem;
        display: inline-flex;
        align-items: center;
    }
    
    .donate-button svg {
        margin-right: 0.5rem;
    }
	
	/* Support Email Tooltip */
.email-support-tooltip {
    position: relative;
    cursor: pointer;
}

.email-support-tooltip:hover::after {
    content: "support@camstudio.org";
    display: block;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    padding: 6px 10px;
    background-color: #fff3e0;
    color: #e65100;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 4px;
    border: 1px solid #f57c00;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.email-support-tooltip:hover::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #f57c00;
    margin-bottom: -4px;
    z-index: 9999;
    pointer-events: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .email-support-tooltip:hover::after {
        left: 0;
        transform: none;
    }
    
    .email-support-tooltip:hover::before {
        left: 20px;
        transform: none;
    }
}