/*
Theme Name: NeuroTech Insights Theme
Theme URI: https://www.neurotechinsights.com/
Author: Your Name/Company Name
Author URI: https://yourwebsite.com/
Description: A custom WordPress theme for NeuroTech Insights, based on their existing website design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neurotech-insights
Tags: custom-background, custom-colors, custom-header, custom-menu, featured-images, flexible-header, full-width-template, light, dark, rtl-language-support, sticky-post, translation-ready

This theme is designed to replicate the visual style and functionality of NeuroTech Insights' static website.
*/

/* --- Custom Fonts (from platform-standalone.html) --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables (from platform-standalone.html) --- */
:root {
    --primary: #26235C;
    --primary-dark: #1a1845;
    --secondary: #2A3584;
    --accent: #0A71B4;
    --accent-light: #41A9E0;
    --accent-lighter: #8EC6E9;
    --neutral-dark: #5F5F6F;
    --neutral-light: #C2C3D1;
    --background: #ffffff;
    --foreground: #1a1a1a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-700: #374151;
    --gray-800: #1f2937;
}

/* --- Global Reset and Base Styles (from platform-standalone.html) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

/* --- Header Styles (from platform-standalone.html) --- */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.social-bar {
    background-color: var(--primary);
    padding: 0.25rem 1rem;
    display: none; /* Hidden on mobile by default, shown on desktop via media query */
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e5e7eb;
}

.header-main {
    display: flex;
    flex-direction: column;
}

.logo-section {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.logo {
    height: 4rem;
    object-fit: contain;
}

.nav-desktop {
    display: none; /* Hidden on mobile by default, shown on desktop via media query */
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    background-color: var(--gray-50);
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 1.125rem;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 12rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--gray-50);
    color: var(--primary);
}

.mobile-menu-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gray-700);
    cursor: pointer;
    display: block; /* Shown on mobile by default, hidden on desktop via media query */
}

.mobile-nav {
    display: none; /* Hidden by default, toggled with JS */
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.mobile-nav.open {
    display: flex;
}

/* --- Footer Styles (from platform-standalone.html) --- */
.footer {
    background-color: var(--primary);
    color: white;
    padding: 3rem 0;
}

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

.footer-logo {
    height: 4.5rem;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: white;
}

.footer h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.footer ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}


/* --- Platform Content Styles (from platform-standalone.html) --- */
/* Note: These styles are largely designed for a specific page.
   For a full theme, consider if these should be more generic or
   if you'll use a page template for the "Platform" page.
   For now, keeping them broad for initial setup. */
.platform-section {
    padding: 2rem 0;
    background: linear-gradient(to bottom, var(--gray-100), white);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h1 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--gray-700);
    max-width: 800px; /* Changed from 3xl for direct CSS value */
    margin: 0 auto;
    font-size: 1.125rem;
}

.neurotech-difference {
    margin-bottom: 1.5rem;
}

.difference-header {
    text-align: center;
    margin-bottom: 1rem;
}

.difference-header h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.difference-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.gait-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.gait-card-content {
    padding: 0.75rem;
}

.gait-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.gait-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.gait-image-section {
    background-color: #E6F4FF;
}

.gait-image {
    width: 100%;
    height: auto;
    display: block;
}

.care-platform {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.care-platform h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.care-platform p {
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--gray-700);
}

.benefit-item::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    margin-right: 0.5rem;
}

.webinar-section {
    background-color: rgba(142, 198, 233, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(10, 113, 180, 0.2);
    margin-bottom: 1rem;
}

.webinar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.webinar-image {
    width: 100%;
    max-width: 48rem;
}

.webinar-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.webinar-text {
    text-align: center;
    max-width: 32rem;
}

.webinar-text p {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.webinar-text .highlight {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

/* --- Responsive Design (from platform-standalone.html) --- */
@media (min-width: 768px) {
    .social-bar {
        display: block;
    }
    
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .difference-content {
        flex-direction: row;
    }
    
    .gait-card {
        flex: 1;
    }
    
    .care-platform {
        flex: 1;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .platform-section {
        padding: 1rem 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}
/* --- For Providers Page Specific Styles --- */
        :root {
            --primary: #26235C;
            --primary-dark: #1a1845;
            --secondary: #2A3584;
            --accent: #0A71B4;
            --accent-light: #41A9E0;
            --accent-lighter: #8EC6E9;
            --neutral-dark: #5F5F6F;
            --neutral-light: #C2C3D1;
            --background: #ffffff;
            --foreground: #1a1a1a;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-400: #9ca3af;
            --gray-700: #374151;
            --gray-800: #1f2937;
        }

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

        body {
            font-family: 'Source Sans 3', sans-serif;
            line-height: 1.6;
            color: var(--foreground);
            background-color: var(--background);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }
        h4 { font-size: 1.25rem; }

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

        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
        }
/* Container adjustments for the entire section content */
.providers-section .container {
    max-width: 1200px; /* Adjusted to match your standalone HTML. You can increase if you want wider. */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem; /* Standard padding from your HTML */
    padding-right: 1rem; /* Standard padding from your HTML */
}

/* Base section padding */
.providers-section {
    padding: 4rem 0; /* Increased vertical padding to match the desired look more closely */
    background: white; /* Ensure background is white */
}

/* Section title alignment and spacing */
.providers-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.providers-section .section-title h1 {
    color: var(--primary); /* Ensure primary color is used */
    margin-bottom: 1rem;
}

.providers-section .section-title p {
    color: var(--gray-700); /* Ensure gray-700 color is used */
    max-width: 800px; /* Changed from '3xl' to a pixel value for standard CSS */
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
}

/* Main content wrapper (image and benefits section) */
.providers-section .main-content {
    display: flex;
    flex-direction: column; /* Default to column for mobile first */
    align-items: center; /* Center items on mobile */
    gap: 2.5rem; /* Increased gap for better spacing */
}

/* Image within the main content */
.providers-section .hero-image {
    width: 100%; /* Full width on mobile */
}

.providers-section .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Benefits section */
.providers-section .benefits-section {
    background-color: white; 
    border: none;
    box-shadow: none;
}

.providers-section .benefits-list li {
    background-color: transparent; 
    padding: 0; 
    margin-bottom: 0.75rem; 
	   list-style: none;
}

.providers-section .benefits-section h3 {
    color: var(--primary);
    margin-bottom: 1rem; /* Slightly more space below heading */
}

.providers-section .benefits-list {
    list-style: none;
    padding: 0;
}

.providers-section .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem; /* Increased space between list items */
    color: var(--gray-700);
}

.providers-section .benefit-item::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    margin-right: 0.75rem; /* Increased space for checkmark */
    margin-top: 0.1rem;
}

/* Features Grid */
.providers-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjusted minmax for better flow */
    gap: 1.5rem; /* Increased gap between feature cards */
    margin-top: 4rem; /* More space above the features grid */
}

.providers-section .feature-card {
    background-color: var(--gray-50);
    padding: 1.5rem; /* Increased padding inside cards */
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.providers-section .feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem; /* More space below header */
}

.providers-section .feature-icon {
    width: 2.75rem; /* Slightly larger icon */
    height: 2.75rem; /* Slightly larger icon */
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem; /* More space to the right of icon */
}

.providers-section .feature-card h4 {
    color: var(--primary);
    font-size: 1.2rem; /* Ensure consistent heading size */
}

.providers-section .feature-card p {
    color: var(--gray-700);
}

/* Call to Action Section */
.providers-section .cta-section {
    text-align: center;
    margin-top: 1.5rem; /* More space above CTA */
    margin-bottom: 3rem; /* More space below CTA */
}

.providers-section .cta-button {
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem; /* Larger padding for the button */
    font-size: 1.25rem; /* Larger font for the button */
    border-radius: 0.5rem; /* Slightly more rounded button */
}

.providers-section .cta-button:hover {
    background-color: var(--secondary);
}

/* Info Grid (bottom two cards) */
.providers-section .info-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to single column for mobile */
    gap: 2.5rem; /* Increased gap between info cards */
    margin-top: 4rem; /* More space above info grid */
}

.providers-section .info-card {
    background-color: var(--gray-50);
    border-radius: 0.75rem;
    padding: 1.5rem; /* Increased padding inside cards */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.providers-section .info-card h3 {
    color: var(--primary);
    margin-bottom: 1rem; /* More space below heading */
}

.providers-section .info-card p {
    color: var(--gray-700);
    margin-bottom: 1rem; /* More space below paragraph */
}

.providers-section .info-card img {
    width: 100%;
    height: 15rem; /* Slightly taller image for better visual balance */
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Responsive Design for larger screens */
@media (min-width: 768px) {
    .providers-section .main-content {
        flex-direction: row; /* Side-by-side layout for desktop */
        align-items: flex-start; /* Align content to the top */
        gap: 60px; /* Increased gap for desktop */
    }
    
    .providers-section .hero-image {
        width: 60%; /* Occupy 60% of width */
    }
    
    .providers-section .benefits-section {
        width: 40%; /* Occupy 40% of width */
    }

    .providers-section .features-grid {
        grid-template-columns: repeat(4, 1fr); /* Four columns on desktop */
        gap: 20px; /* Adjust spacing between feature cards */
    }

    .providers-section .info-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on desktop */
        gap: 30px; /* Adjust spacing between info cards */
    }
}

/* Responsive adjustments for smaller screens (less than 768px) - ensure mobile sizes are good */
@media (max-width: 767px) { /* Changed to 767px to ensure it's distinct from min-width: 768px */
    .providers-section .container {
        padding: 0 1rem; /* Give some side padding on small screens */
    }
    
    .providers-section {
        padding: 2rem 0; /* Adjust vertical padding for mobile */
    }
    
    .providers-section h1 { font-size: 2rem; }
    .providers-section h2 { font-size: 1.75rem; } /* Slightly larger for mobile */
    .providers-section h3 { font-size: 1.5rem; } /* Slightly larger for mobile */
    .providers-section h4 { font-size: 1.15rem; } /* Adjusted */

    .providers-section .section-title {
        margin-bottom: 2rem; /* Less space for mobile title */
    }

    .providers-section .cta-section {
        margin-top: 2rem; /* Less space for mobile CTA */
        margin-bottom: 2rem;
    }
}

        /* Athletes Content Styles */
body {
            font-family: 'Source Sans 3', sans-serif;
            line-height: 1.6;
            color: var(--foreground);
            background-color: var(--background);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }
        h4 { font-size: 1.25rem; }

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

        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
        }


        .athletes-section {
            padding: 4rem 0;
            background: white;
        }

        .athletes-section .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .athletes-section .section-title h1 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .athletes-section .section-title p {
            color: var(--gray-700);
            max-width: 3xl;
            margin: 0 auto;
            font-size: 1.125rem;
        }

        .athletes-section .content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        .athletes-section .hero-section {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .athletes-section .hero-text {
            max-width: 48rem;
            margin: 0 auto;
            text-align: center;
            margin-bottom: 2rem;
        }

        .athletes-section .hero-text p {
            font-size: 1.25rem;
            color: var(--primary);
        }

        .athletes-section .images-grid {
            display: flex;
            /*grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
            gap: 1.5rem;
            max-width: 64rem;
            margin: 0 auto;
        }

        .athletes-section .images-grid img {
            width: 100%;
            height: 16rem;
            object-fit: cover;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

		.feature-card {
            border-radius: 0.75rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            color: white;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 6rem;
            height: 6rem;
            opacity: 0.1;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .feature-card.performance {
            background-color: var(--primary);
        }

        .feature-card.performance:hover {
            background-color: var(--accent);
        }

        .athletes-section .feature-card.injury {
            background-color: var(--secondary);
        }

        .feature-card.injury:hover {
            background-color: var(--accent);
        }

        .feature-card.recovery {
            background-color: var(--accent);
        }

        .feature-card.recovery:hover {
            background-color: var(--primary);
        }

        .feature-icon {
            width: 4rem;
            height: 4rem;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-section {
            text-align: center;
        }

        .cta-button {
            background-color: var(--primary);
            color: white;
            padding: 1.5rem 2.5rem;
            font-size: 1.125rem;
            border-radius: 9999px;
        }

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

        /* Responsive Design */
        @media (min-width: 768px) {
            .social-bar {
                display: block;
            }
            
            .nav-desktop {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: none;
            }
            
            .images-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 0.5rem;
            }
            
            .athletes-section {
                padding: 2rem 0;
            }
            
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.25rem; }
            
            .content-wrapper {
                gap: 2rem;
            }
            
            .hero-section {
                padding: 1rem;
            }
            
            .hero-text p {
                font-size: 1.125rem;
            }
        }

/* Aging Content Styles */
        .aging-section {
            padding: 4rem 0;
            background: var(--gray-100);
        }

        .aging-section .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .aging-section .section-title h1 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .aging-section .section-title p {
            color: var(--gray-700);
            max-width: 3xl;
            margin: 0 auto;
            font-size: 1.125rem;
            font-weight: 500;
        }

        .aging-section .content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .aging-section .main-section {
            background: white;
            padding: 2rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .aging-section .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }

        .aging-section .text-content h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .aging-section .text-content p {
            color: var(--gray-700);
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
        }

        .aging-section .text-content p:last-child {
            margin-bottom: 0;
        }

        .aging-section .images-grid {
            display: flex;
            /*grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
            gap: 1.5rem;
            max-width: 64rem;
            margin: 0 auto;
        }

        .aging-section .images-grid img {
            width: 100%;
            height: 16rem;
            object-fit: cover;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
        }

        .info-card {
            background: #f5f7fa;
			padding:1rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-left: 4px solid var(--primary);
        }

        .info-card.blue {
            border-left-color: var(--accent);
        }

        .info-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .info-card p {
            color: var(--gray-700);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .feature-card {
            border-radius: 0.75rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            color: white;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: scale(1.05);
        }

        .feature-card.cognitive {
            background-color: var(--primary);
        }

        .feature-card.fall-risk {
            background-color: var(--accent);
        }

        .feature-card.progress {
            background-color: var(--accent-light);
        }

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

        .feature-icon {
            width: 3.5rem;
            height: 3.5rem;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .feature-icon.cognitive {
            color: var(--primary);
        }

        .feature-icon.fall-risk {
            color: var(--accent);
        }

        .feature-icon.progress {
            color: var(--accent-light);
        }

        .feature-card h4 {
            font-weight: 700;
        }

        .feature-card p {
            opacity: 0.9;
        }

        .cta-section {
            text-align: center;
            margin-top: 1.5rem;
        }

        .cta-button {
            background-color: var(--primary);
            color: white;
            padding: 1.5rem 2.5rem;
            font-size: 1.125rem;
            border-radius: 0.75rem;
        }

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

        /* Responsive Design */
        @media (min-width: 768px) {
            .social-bar {
                display: block;
            }
            
            .nav-desktop {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: none;
            }
            
            .main-content {
                grid-template-columns: 1fr 1fr;
            }
            
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 0.5rem;
            }
            
            .aging-section {
                padding: 2rem 0;
            }
            
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.25rem; }
            
            .main-section {
                padding: 1rem;
            }
            
            .text-content p {
                font-size: 1rem;
            }
            
            .images-grid {
                grid-template-columns: 1fr;
				flex-direction:column
            }
            
            .images-grid img {
                height: 12rem;
            }
            
            .info-cards {
                grid-template-columns: 1fr;
            }
        }


        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
            padding: 4rem 0;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray-700);
            margin-bottom: 2rem;
        }

        .brain-image-container {
            margin: 2rem 0;
            display: flex;
            justify-content: center;
        }

        .about-content {
            max-width: 800px;
            margin: 2rem auto;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .solution-title {
            font-size: 1.25rem;
            color: var(--secondary);
            margin-bottom: 0.75rem;
            margin-top: 1.5rem;
        }

        .about-text {
            color: var(--gray-700);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .brain-neural-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        /* Benefits Section */
        .benefits-section {
            padding: 3rem 0;
            background: var(--gray-50);
        }

        .platform-benefits {
            text-align: center;
            margin-bottom: 2rem;
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .benefits-title {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .benefits-list-center {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .benefit-box {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            text-align: center;
        }

        .benefit-box-title {
            font-size: 1.125rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .benefit-box-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
        }

        /* Mission Grid */
        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .mission-item {
            text-align: center;
        }

        .mission-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
        }

        .mission-icon.purpose {
            background-color: var(--primary);
        }

        .mission-icon.mission {
            background-color: var(--secondary);
        }

        .mission-icon.vision {
            background-color: var(--accent-light);
        }

        /* Core Tenets */
        .tenets-section {
            padding: 3rem 0;
            background: var(--gray-50);
        }

        .tenets-title {
            text-align: center;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 2rem;
        }

        .tenets-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .tenet-item {
            text-align: center;
        }

        .tenet-icon {
            width: 48px;
            height: 48px;
            background-color: rgba(38, 35, 92, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
        }

        .tenet-title {
            color: var(--primary);
            font-size: 1rem;
        }

        /* Mission Section */
        .mission-section {
            padding: 3rem 0;
            background: white;
        }

        .mission-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .mission-title {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .mission-text {
            font-size: 1.125rem;
            color: var(--gray-700);
            line-height: 1.8;
        }

        /* Team Sections */
        .team-section {
            padding: 3rem 0;
            background: var(--gray-50);
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 3rem;
        }

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

        .team-member {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .team-member:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }

        .member-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            background: var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .member-initials {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.5rem;
        }

        .member-name {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .member-title {
            font-size: 0.875rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .member-description {
            margin-bottom: 0.75rem; /* Space between description and button */
    color: var(--gray-700); /* Use your defined neutral color */
    overflow: hidden; /* This is crucial for truncation */
    position: relative;
        }

        .member-description.truncated {
            display: -webkit-box; /* Required for multi-line truncation in WebKit browsers */
    -webkit-line-clamp: 3; /* Limit to 3 lines (adjust as needed) */
    -webkit-box-orient: vertical; /* Required with -webkit-line-clamp */
    max-height: 4.8em; /* Approximate height for 3 lines (line-height * lines) */
    line-height: 1.6;
        }

        .read-more-btn {
            background: none;
            border: none;
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            padding: 0;
            margin-top: 0.5rem;
            text-decoration: underline;
            transition: color 0.2s ease;
        }

        .read-more-btn:hover {
            color: var(--secondary);
        }

        /* Advisory Board */
        .advisory-section {
            padding: 3rem 0;
            background: white;
        }


        /* Contact Us Content Styles */
        .contact-section {
            padding: 4rem 0;
            background: white;
        }

        .contact-section .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-section .section-title h1 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .contact-section .section-title p {
            color: var(--gray-700);
            max-width: 3xl;
            margin: 0 auto;
            font-size: 1.125rem;
        }

        .contact-section .contact-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .contact-section .contact-form-section {
            background: var(--gray-50);
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .contact-form-section h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

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

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

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--gray-200);
            border-radius: 0.375rem;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(10, 113, 180, 0.1);
        }

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

        .form-group.required label::after {
            content: " *";
            color: var(--error);
        }

        .form-error {
            color: var(--error);
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }

        .form-success {
            background: var(--success);
            color: white;
            padding: 1rem;
            border-radius: 0.375rem;
            margin-bottom: 1rem;
            display: none;
        }

        .submit-btn {
            background-color: var(--primary);
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 0.375rem;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background-color: var(--primary-dark);
        }

        .submit-btn:disabled {
            background-color: var(--gray-400);
            cursor: not-allowed;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-card {
            background: var(--gray-50);
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .info-card h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(42, 53, 132, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            color: var(--gray-800);
            margin-bottom: 0.25rem;
        }

        .contact-details p {
            color: var(--gray-700);
        }
		
		.contact-section .social-media h3 {
            margin-bottom: 1rem;
        }

        .contact-section .social-icons {
            display: flex;
            gap: 1rem;
        }

        .contact-section .social-icon {
            width: 2.5rem;
            height: 2.5rem;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .contact-section .social-icon:hover {
            background-color: var(--primary-dark);
        }

        /*Packages Page Main Content */
       .packages-section .main-content {
            background-color: #F5F5F5;
            min-height: calc(80vh - 200px);
            padding: 4rem 0;
        }

        .packages-section .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .packages-section .section-title h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: #26235C;
            margin-bottom: 1rem;
        }

        .packages-section .section-title p {
            font-size: 1.125rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Packages Grid */
        .packages-grid {
            display: flex;
    		flex-wrap: nowrap;
			align-items: stretch;
    		justify-content: center;
   			gap: 1.5rem;
    		max-width: 1200px;
    		margin: 0 auto;
    		padding: 0 1rem;
		
        }

        .package-card {
			flex: 1 0 300px;                    
			min-width: 300px;
			max-width: 350px;
			display: flex; 
			flex-direction: column;
			justify-content: space-between;
			background-color: white;
			border-radius: 8px;
			box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
			padding: 1.5rem;
        }

        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .package-header {
            padding: 2rem;
            text-align: center;
            color: white;
        }

        .package-header.hospital {
            background-color: #26235C;
        }

        .package-header.pt-clinics {
            background-color: #2A3584;
        }

        .package-header.schools {
            background-color: #6B7280;
        }

        .package-header.individual {
            background-color: #1F2937;
        }

        .package-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .package-title {
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .package-content {
            padding: 2rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: #374151;
        }

        .features-list li::before {
            content: "✓";
            color: #10B981;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .package-button {
            width: 100%;
            padding: 0.875rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            color: white;
        }

        .package-button.hospital {
            background-color: #26235C;
        }

        .package-button.hospital:hover {
            background-color: #1E1B4F;
        }

        .package-button.pt-clinics {
            background-color: #2A3584;
        }

        .package-button.pt-clinics:hover {
            background-color: #232E73;
        }

        .package-button.schools {
            background-color: #6B7280;
        }

        .package-button.schools:hover {
            background-color: #4B5563;
        }

        .package-button.individual {
            background-color: #1F2937;
        }

        .package-button.individual:hover {
            background-color: #111827;
        }


/*Research Page*/
 /* Main Content */
        .research-section .main-content {
            padding: 4rem 0;
        }

        .research-section .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .research-section .section-title h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: #26235C;
            margin-bottom: 1rem;
        }

        /* Assessment Tools Section */
        .assessment-tools {
            max-width: 1200px;
            margin: 0 auto 4rem;
        }

        .tool-accordion {
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .tool-header {
            background: white;
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.2s ease;
        }

        .tool-header:hover {
            background-color: #f9fafb;
        }

        .tool-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #26235C;
        }

        .chevron {
            color: #0A71B4;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .chevron.rotated {
            transform: rotate(180deg);
        }

        .tool-content {
            display: none;
            padding: 0 1.5rem 1.5rem;
        }

        .tool-content.expanded {
            display: block;
        }

        .tool-description {
            color: #374151;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .detail-section {
            margin-bottom: 1.5rem;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid;
        }

        .detail-section.selected {
            background-color: #f8fafc;
            border-left-color: #0A71B4;
        }

        .detail-section.normative {
            background-color: #f8fafc;
            border-left-color: #41A9E0;
        }

        .detail-section.demographics {
            background-color: #f8fafc;
            border-left-color: #8EC6E9;
        }

        .detail-section.practice {
            background-color: #f0f9ff;
            border-left-color: #26235C;
        }

        .detail-title {
            font-weight: 600;
            color: #26235C;
            margin-bottom: 0.5rem;
        }

        .detail-subtitle {
            font-weight: 600;
            color: #26235C;
            margin-bottom: 0.5rem;
        }

        .detail-text {
            color: #374151;
            line-height: 1.6;
        }

        .detail-list {
            list-style: none;
            padding: 0;
        }

        .detail-list li {
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .detail-list li::before {
            content: "• ";
            font-weight: bold;
        }

        /* Research Impact Section */
        .research-impact {
            max-width: 800px;
            margin: 4rem auto;
            background: linear-gradient(135deg, #26235C 0%, #0A71B4 100%);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .research-impact h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .research-impact p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .research-cta {
            background: white;
            color: #26235C;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .research-cta:hover {
            background-color: #f3f4f6;
            transform: translateY(-2px);
        }

        /* Research Studies Section */
        .research-studies {
            max-width: 1200px;
            margin: 5rem auto 0;
        }

        .studies-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .studies-title h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #0A71B4;
            margin-bottom: 2rem;
        }

        .study-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .study-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .study-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0A71B4;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

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

        .study-meta-item {
            display: flex;
            flex-direction: column;
        }

        .study-meta-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: #0A71B4;
            margin-bottom: 0.25rem;
        }

        .study-meta-value {
            color: #374151;
            font-size: 0.9rem;
        }

        .study-expanded {
            margin: 1.5rem 0;
            padding-left: 1rem;
            border-left: 4px solid #0A71B4;
        }

        .study-publication {
            font-weight: 700;
            color: #26235C;
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
        }

        .study-date {
            color: #6b7280;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .study-abstract-title {
            font-weight: 600;
            color: #26235C;
            margin-bottom: 0.5rem;
        }

        .study-abstract {
            color: #374151;
            line-height: 1.7;
            text-align: justify;
        }

        .study-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            align-items: flex-start;
        }

        .view-publication-btn {
            background-color: #0A71B4;
            color: white;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .view-publication-btn:hover {
            background-color: #085a94;
        }

        .view-article-btn {
            background-color: #41A9E0;
            color: white;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
            transition: background-color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .view-article-btn:hover {
            background-color: #3498db;
        }

		
        /* Responsive Design */
        @media (max-width: 768px) {
            .research-section .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .research-section .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }

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

            .research-impact {
                margin: 2rem auto;
                padding: 1.5rem;
            }

            .research-impact h3 {
                font-size: 1.5rem;
            }

            .study-meta {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .research-section .container {
                padding: 0 15px;
            }

            .research-section .main-content {
                padding: 2rem 0;
            }

            .research-section .section-title h1 {
                font-size: 1.75rem;
            }

            .tool-header {
                padding: 1rem;
            }

            .tool-content {
                padding: 0 1rem 1rem;
            }

            .research-impact {
                padding: 1rem;
            }
        }

	
        /* Main Mobile App Section */
        .mobile-app-section {
            background: linear-gradient(135deg, #0A71B4 0%, #26235C 100%);
            color: white;
            padding: 4rem 0;
            min-height: calc(100vh - 100px);
        }

        .app-content {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            align-items: center;
        }

        .app-info {
            flex: 1;
            max-width: 600px;
        }

        .app-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .app-tagline {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .app-quote {
            font-size: 1.125rem;
            font-style: italic;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 1.25rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .feature-header {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .feature-icon {
            color: #8EC6E9;
            font-size: 1.5rem;
            margin-right: 0.75rem;
        }

        .feature-title {
            font-weight: 700;
            font-size: 1.125rem;
        }

        .feature-description {
            font-size: 0.875rem;
            opacity: 0.9;
            line-height: 1.5;
        }

        .compliance-section {
            background: white;
            color: #26235C;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .compliance-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .compliance-subtitle {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .compliance-text {
            font-size: 0.875rem;
            color: #374151;
            line-height: 1.6;
        }

        .app-visual {
            flex: 1;
            max-width: 500px;
            position: relative;
        }

        .phone-mockup {
            position: relative;
            margin: 0 auto;
        }

        .phone-frame {
            position: relative;
            border-radius: 40px;
            overflow: hidden;
            border: 8px solid #1F2937;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            background: #f8f9fa;
        }

        .phone-notch {
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 64px;
            height: 4px;
            background: #1F2937;
            border-radius: 2px;
            z-index: 10;
        }

	.phone-frame img{
		max-width: 100%;
	}

	

        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .download-btn {
            background: white;
            color: #26235C;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .download-btn:hover {
            background-color: #f3f4f6;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

		
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }

            .app-title {
                font-size: 2.5rem;
            }

            .app-tagline {
                font-size: 1.25rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .download-buttons {
                flex-direction: column;
                align-items: center;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .mobile-app-section {
                padding: 2rem 0;
            }

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

            .app-tagline {
                font-size: 1.125rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 1024px) {
            .app-content {
                flex-direction: row;
                align-items: center;
                gap: 4rem;
            }

            .app-info {
                flex: 1;
            }

            .app-visual {
                flex: 1;
            }
        }
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
.tbrx-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .tbrx-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .tbrx-container {
        padding: 0 2rem;
    }
}

/* Grid system */
.tbrx-grid {
    display: grid;
    gap: 2rem;
}

.tbrx-grid-cols-1 {
    grid-template-columns: 1fr;
}

.tbrx-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.tbrx-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.tbrx-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 768px) {
    .tbrx-md-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .tbrx-md-grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .tbrx-lg-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .tbrx-lg-grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .tbrx-lg-grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Flexbox utilities */
.tbrx-flex {
    display: flex;
}

.tbrx-flex-col {
    flex-direction: column;
}

.tbrx-items-center {
    align-items: center;
}

.tbrx-justify-center {
    justify-content: center;
}

.tbrx-justify-between {
    justify-content: space-between;
}

.tbrx-space-x-3 > * + * {
    margin-left: 0.75rem;
}

.tbrx-space-x-4 > * + * {
    margin-left: 1rem;
}

.tbrx-space-x-6 > * + * {
    margin-left: 1.5rem;
}

.tbrx-space-y-2 > * + * {
    margin-top: 0.5rem;
}

.tbrx-space-y-4 > * + * {
    margin-top: 1rem;
}

.tbrx-space-y-6 > * + * {
    margin-top: 1.5rem;
}

/* Text styles */
.tbrx-text-center {
    text-align: center;
}

.tbrx-text-xs {
    font-size: 0.75rem;
}

.tbrx-text-sm {
    font-size: 0.875rem;
}

.tbrx-text-lg {
    font-size: 1.125rem;
}

.tbrx-text-xl {
    font-size: 1.25rem;
}

.tbrx-text-2xl {
    font-size: 1.5rem;
}

.tbrx-text-3xl {
    font-size: 1.875rem;
}

.tbrx-text-4xl {
    font-size: 2.25rem;
}

.tbrx-text-6xl {
    font-size: 3.75rem;
}

.tbrx-font-semibold {
    font-weight: 600;
}

.tbrx-font-bold {
    font-weight: 700;
}

.tbrx-leading-tight {
    line-height: 1.25;
}

.tbrx-leading-relaxed {
    line-height: 1.625;
}

@media (min-width: 1024px) {
    .tbrx-lg-text-2xl {
        font-size: 1.5rem;
    }
    .tbrx-lg-text-4xl {
        font-size: 2.25rem;
    }
    .tbrx-lg-text-6xl {
        font-size: 3.75rem;
    }
}

/* Colors */
.tbrx-text-white {
    color: #ffffff;
}

.tbrx-text-gray-300 {
    color: #d1d5db;
}

.tbrx-text-gray-500 {
    color: #6b7280;
}

.tbrx-text-gray-600 {
    color: #4b5563;
}

.tbrx-text-gray-900 {
    color: #111827;
}

.tbrx-bg-white {
    background-color: #ffffff;
}

.tbrx-bg-gray-50 {
    background-color: #f9fafb;
}

.tbrx-bg-gray-200 {
    background-color: #e5e7eb;
}

.tbrx-bg-gray-900 {
    background-color: #111827;
}

.tbrx-bg-blue-600 {
    background-color: #2563eb;
}

.tbrx-bg-green-600 {
    background-color: #059669;
}

.tbrx-bg-emerald-600 {
    background-color: #059669;
}

.tbrx-bg-purple-600 {
    background-color: #9333ea;
}

/* Spacing */
.tbrx-p-4 {
    padding: 1rem;
}

.tbrx-p-6 {
    padding: 1.5rem;
}

.tbrx-p-8 {
    padding: 2rem;
}

.tbrx-px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.tbrx-px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.tbrx-py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.tbrx-py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.tbrx-py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.tbrx-pt-8 {
    padding-top: 2rem;
}

.tbrx-pb-4 {
    padding-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .tbrx-lg-py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

/* Sizing */
.tbrx-w-8 {
    width: 2rem;
}

.tbrx-w-10 {
    width: 2.5rem;
}

.tbrx-w-12 {
    width: 3rem;
}

.tbrx-w-16 {
    width: 4rem;
}

.tbrx-w-full {
    width: 100%;
}

.tbrx-h-8 {
    height: 2rem;
}

.tbrx-h-10 {
    height: 2.5rem;
}

.tbrx-h-12 {
    height: 3rem;
}

.tbrx-h-16 {
    height: 4rem;
}

.tbrx-h-48 {
    height: 12rem;
}

.tbrx-h-auto {
    height: auto;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-7xl {
    max-width: 80rem;
}

/* Borders and rounded corners */
.tbrx-border-b {
    border-bottom: 1px solid #e5e7eb;
}

.tbrx-border-t {
    border-top: 1px solid #4b5563;
}

.tbrx-border-2 {
    border: 2px solid;
}

.tbrx-border-white {
    border-color: #ffffff;
}

.tbrx-rounded-lg {
    border-radius: 0.5rem;
}

.tbrx-rounded-xl {
    border-radius: 0.75rem;
}

.tbrx-rounded-full {
    border-radius: 9999px;
}

/* Shadows */
.tbrx-shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tbrx-shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tbrx-shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Positioning */
.tbrx-relative {
    position: relative;
}

.tbrx-absolute {
    position: absolute;
}

.tbrx-sticky {
    position: sticky;
}

.tbrx-top-0 {
    top: 0;
}

.tbrx-inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.tbrx-z-50 {
    z-index: 50;
}

/* Object fit */
.tbrx-object-cover {
    object-fit: cover;
}

/* Flex shrink */
.tbrx-flex-shrink-0 {
    flex-shrink: 0;
}

/* Hero section */
.tbrx-hero {
    background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    padding: 5rem 0;
}

.tbrx-hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.tbrx-hero-text {
    color: #ffffff;
}

.tbrx-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.tbrx-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #dbeafe;
}

.tbrx-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tbrx-hero-image {
    position: relative;
}

.tbrx-hero-image img {
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
}

.tbrx-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.2), transparent);
    border-radius: 0.75rem;
}

@media (min-width: 640px) {
    .tbrx-hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .tbrx-hero {
        padding: 8rem 0;
    }
    
    .tbrx-hero-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tbrx-hero-title {
        font-size: 3.75rem;
    }
    
    .tbrx-hero-description {
        font-size: 1.5rem;
    }
}

/* Buttons */
.tbrx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.tbrx-btn-primary {
    background-color: #059669;
    color: #ffffff;
}

.tbrx-btn-primary:hover {
    background-color: #047857;
}

.tbrx-btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.tbrx-btn-outline:hover {
    background-color: #ffffff;
    color: #2563eb;
}

/* Cards */
.tbrx-card {
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tbrx-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tbrx-card-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.tbrx-card img {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 12rem;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

/* Icon containers */
.tbrx-icon-container {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.tbrx-icon-container-lg {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tbrx-icon-container-sm {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto 1rem;
}

@media (min-width: 1024px) {
    .tbrx-icon-container-sm {
        margin: 0 auto 1.5rem;
    }
}

/* Sections */
.tbrx-section {
    padding: 5rem 0;
}

.tbrx-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tbrx-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.tbrx-section-description {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .tbrx-section-title {
        font-size: 2.25rem;
    }
}

/* Feature list */
.tbrx-feature-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tbrx-feature-list i {
    color: #059669;
}

/* Purchase section specific */
.tbrx-purchase-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    max-width: 28rem;
    margin: 0 auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
}

/* Stripe buy button styling */
stripe-buy-button {
    --background: #059669;
    --background-hover: #047857;
    --text: #ffffff;
}

/* Animation utilities */
@keyframes tbrx-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tbrx-fade-in-up {
    animation: tbrx-fadeInUp 0.6s ease-out;
}

/* App section specific */
.tbrx-app-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.tbrx-app-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tbrx-app-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.tbrx-app-feature p {
    color: #4b5563;
}

@media (min-width: 1024px) {
    .tbrx-app-content {
        grid-template-columns: repeat(2, 1fr);
    }
}