        /* START: Telehealth Page Styles - Navigation styles excluded to prevent conflicts */
        /* Universal reset removed - using global.css instead */
        /* Body styles made more specific to avoid overriding navigation */
        body:not(.admin-body) {
            line-height: 1.7;
            color: var(--text-color-dark);
            background: var(--background-light); /* Use main light background */
        }
        
        /* Apply telehealth-specific typography to content areas only, not navigation */
        .hero, .telehealth-content, .benefits, .how-it-works, .faq, .cta-section, .contact-info {
            font-family: var(--font-primary); /* Use Lato as primary */
            font-size: 17px; /* Match base font size */
        }
        

        .hero {
            position: relative;
            padding: 5rem 1rem;
            text-align: center;
            background-color: var(--primary-color);
            color: var(--text-color-light);
            background-size: 100px;
        }
        .hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.2rem); /* Responsive heading */
            color: var(--text-color-light);
            margin-bottom: 1rem;
            font-family: var(--font-secondary); /* Use Merriweather */
            font-weight: 700;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .hero p {
            font-family: var(--font-primary);
            font-size: clamp(1.1rem, 2.5vw, 1.3rem); /* Responsive subhead */
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .telehealth-content-wrapper { /* Added a wrapper for section padding */
            padding: 3rem 1rem;
            background-color: var(--background-white); /* White background for this distinct section */
        }
        .telehealth-content {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--background-white); /* Keep content area white */
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow-standard);
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem; /* Increased gap */
            align-items: center;
            justify-content: center;
            padding: 2.5rem; /* Padding inside the card */
        }
        .telehealth-image {
            flex: 1;
            min-width: 280px; /* Slightly larger min-width */
            max-width: 350px; /* Slightly larger max-width */
        }
        .telehealth-image video, .telehealth-image img { /* Apply to video too */
            width: 100%;
            border-radius: var(--border-radius);
            border: 3px solid var(--background-white); /* White border against card */
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }
        .telehealth-text {
            flex: 1.5; /* Adjusted flex ratio */
            min-width: 300px;
        }
        .telehealth-text h2 {
            font-size: clamp(1.8rem, 4vw, 2.2rem); /* Responsive */
            color: var(--secondary-color); /* Use secondary color for headings */
            margin-bottom: 1rem;
            font-family: var(--font-secondary);
        }
        .telehealth-text p {
            font-family: var(--font-primary);
            font-size: 1.05rem; /* Slightly larger paragraph text */
            margin-bottom: 1rem;
            color: var(--text-color-dark);
        }
        .benefits, .how-it-works {
            padding: 3rem 1rem;
            text-align: center;
            background: var(--background-off-white); /* Use off-white for these sections */
        }
        .benefits h2, .how-it-works h2 { /* Section titles */
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--secondary-color);
            margin-bottom: 2.5rem; /* Increased margin */
            font-family: var(--font-secondary);
        }
        .benefits-grid, .steps-grid {
            display: grid; /* Using grid for better alignment */
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive columns */
            gap: 2rem;
            max-width: 1100px; /* Slightly wider grid */
            margin: 0 auto;
        }
        .benefit-item, .step-item {
            padding: 2rem 1.5rem; /* Increased padding */
            background: var(--background-white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow-standard);
            text-align: left;
            border-top: 3px solid var(--primary-color); /* Top accent border */
            transition: var(--transition-standard);
        }
        .benefit-item:hover, .step-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .benefit-item h3, .step-item h3 {
            font-size: 1.4rem; /* Larger item headings */
            color: var(--primary-color); /* Primary color for item headings */
            margin-bottom: 0.75rem;
            font-family: var(--font-secondary);
        }
        .benefit-item p, .step-item p {
            font-family: var(--font-primary);
            font-size: 1rem;
            color: #555; /* Slightly lighter dark text */
        }
        .cta-section {
            padding: 4rem 1rem; /* Increased padding */
            text-align: center;
            background: var(--primary-color); /* Use primary color */
            color: var(--text-color-light);
        }
        .cta-section h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 1rem;
            font-family: var(--font-secondary);
            color: var(--text-color-light); /* Ensure text is light */
        }
        .cta-section p {
            font-family: var(--font-primary);
            font-size: 1.2rem;
            margin-bottom: 2.5rem; /* Increased margin */
            opacity: 0.9;
        }
        .elementor-button-wrapper {
            margin: 0.5rem 0;
        }
        .contact-book-now { /* Main CTA button */
            display: inline-flex;
            padding: 1rem 2.2rem; /* Adjusted padding */
            background: var(--accent-color); /* Use accent color */
            color: var(--text-color-light);
            text-decoration: none;
            font-family: var(--font-primary);
            font-size: 1.1rem; /* Match CTA button size */
            font-weight: 700; /* Bold */
            border-radius: var(--border-radius);
            border: 2px solid var(--accent-color); /* Border matches background */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: var(--transition-standard);
            align-items: center;
            gap: 0.75rem;
            text-transform: uppercase; /* Uppercase like main site CTAs */
        }
        .contact-book-now:hover {
            background: var(--accent-color-dark); /* Darker accent on hover */
            border-color: var(--accent-color-dark);
            transform: translateY(-3px); /* Subtle lift */
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
        }
        .contact-book-now .elementor-button-icon svg {
            width: 1.3rem; /* Adjusted icon size */
            height: 1.3rem;
            fill: var(--text-color-light);
        }
        .contact-book-now .elementor-button-text {
            line-height: 1.2;
        }
        /* Footer styles are now handled by /global/styles/footer.css */
        .trust-badges {
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .trust-badge {
            font-size: 0.8rem;
            background: #4A90E2;
            padding: 0.3rem 0.75rem;
            border-radius: 5px;
        }
        #counter {
            position: fixed;
            bottom: 1rem;
            left: 1rem;
            color: #4A90E2;
            font-size: 0.9rem;
            z-index: 1000;
        }
        @media (max-width: 768px) {
            .hero {
                padding: 2rem 0.75rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .telehealth-content {
                flex-direction: column;
                padding: 1rem;
            }
            .telehealth-image {
                max-width: 200px;
            }
            .benefits, .how-it-works {
                padding: 2rem 0.75rem;
            }
            .benefit-item, .step-item {
                flex: 1 1 100%;
                min-width: 0;
            }
            .cta-section {
                padding: 2rem 0.75rem;
            }
            .contact-book-now {
                padding: 0.8rem 1.8rem;
                font-size: 1.1rem;
            }
            .contact-book-now .elementor-button-icon svg {
                width: 1.3rem;
                height: 1.3rem;
            }

            #counter {
                font-size: 0.8rem;
            }
        }
        
.designed-by {
    color: #fff;       /* Sets the phone number part to white */
    opacity: 1;       /* Ensures full opacity for white */
    margin-top: 1rem; /* Example: Add a bit more space above this specific line */
    /* margin-bottom: 0; */ /* If it's the very last item in the footer */
}

.designed-by a {
    color: #fff;               /* Sets the link text to white */
    text-decoration: none;      /* Remove any default underline for the link itself */
    display: inline-block;      /* Good practice for pseudo-elements and padding */
    position: relative;         /* For positioning the ::after pseudo-element */
    padding-bottom: 2px;        /* Space for the underline so it doesn't touch text */
    transition: color 0.3s ease; /* Smooth transition for text color if it changes */
}


        /* Custom blue underline for .designed-by a that appears on hover */
.designed-by a::after {
    content: '';
    position: absolute;
    width: 0; /* Start with no width */
    height: 1.5px; /* Thickness of the blue underline */
    display: block;
    bottom: 0; /* Position at the bottom of the link (respecting padding-bottom) */
    left: 0;
    background-color: var(--accent-color); /* BLUE underline */
    transition: width 0.3s ease; /* Animate the width */
}

.designed-by a:hover {
    color: #fff; /* Keep text white on hover */
    /* text-decoration: none;  <-- This would remove the general footer a:hover underline
                                     but we're replacing it with ::after, so it's fine.
                                     If you DON'T want the general footer a:hover underline
                                     AND your custom ::after, uncomment this. */
}

.designed-by a:hover::after {
    width: 100%; /* Expand the blue underline to full width on hover */
}
        /* END: Original tele.html styles */