
        :root {
            --bg-deep: #0a1628;
            --bg-ocean: #0f1f3a;
            --bg-card: #1a2d4a;
            --primary-blue: #3b82f6;
            --accent-blue: #60a5fa;
            --light-blue: #93c5fd;
            --primary-gold: #d4af37;
            --accent-gold: #f4d03f;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --border: rgba(59, 130, 246, 0.2);
            --border-glow: rgba(59, 130, 246, 0.5);
            --health: #3b82f6;
            --performance: #2563eb;
            --mentorship: #1d4ed8;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Flowing Water Background Animation */
        .water-flow-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(180deg, 
                #051024 0%, 
                #0a1d3d 25%, 
                #0f2a4d 50%, 
                #0a1d3d 75%, 
                #051024 100%);
            overflow: hidden;
        }
        
        .water-flow-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(ellipse 80% 50% at 20% 40%, rgba(59, 130, 246, 0.35) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 60%, rgba(37, 99, 235, 0.3) 0%, transparent 45%),
                radial-gradient(ellipse 70% 45% at 50% 80%, rgba(14, 165, 233, 0.25) 0%, transparent 40%);
            animation: waterFlow 15s ease-in-out infinite;
        }
        
        .water-flow-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(90deg, 
                    transparent 0%, 
                    rgba(59, 130, 246, 0.08) 25%, 
                    rgba(37, 99, 235, 0.12) 50%, 
                    rgba(59, 130, 246, 0.08) 75%, 
                    transparent 100%);
            animation: waterWave 8s linear infinite;
        }
        
        .water-ripple {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(59, 130, 246, 0.25);
            animation: ripple 6s ease-out infinite;
        }
        
        .water-ripple:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .water-ripple:nth-child(2) {
            width: 400px;
            height: 400px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }
        
        .water-ripple:nth-child(3) {
            width: 250px;
            height: 250px;
            bottom: 20%;
            left: 30%;
            animation-delay: 4s;
        }
        
        @keyframes waterFlow {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(2%, 1%) rotate(1deg);
            }
            50% {
                transform: translate(-1%, 2%) rotate(-1deg);
            }
            75% {
                transform: translate(1%, -1%) rotate(0.5deg);
            }
        }
        
        @keyframes waterWave {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0.8);
                opacity: 0.3;
                border-color: rgba(59, 130, 246, 0.2);
            }
            50% {
                opacity: 0.15;
                border-color: rgba(37, 99, 235, 0.15);
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
                border-color: rgba(59, 130, 246, 0);
            }
        }
        
        /* Floating Bubbles */
        .bubble {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.6), rgba(59, 130, 246, 0.3));
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.4), 0 0 30px rgba(37, 99, 235, 0.2);
            animation: floatUp 12s ease-in infinite;
            pointer-events: none;
        }
        
        .bubble:nth-child(4) {
            width: 8px;
            height: 8px;
            left: 15%;
            bottom: -10px;
            animation-delay: 0s;
            animation-duration: 10s;
        }
        
        .bubble:nth-child(5) {
            width: 12px;
            height: 12px;
            left: 35%;
            bottom: -10px;
            animation-delay: 3s;
            animation-duration: 14s;
        }
        
        .bubble:nth-child(6) {
            width: 6px;
            height: 6px;
            left: 55%;
            bottom: -10px;
            animation-delay: 6s;
            animation-duration: 11s;
        }
        
        .bubble:nth-child(7) {
            width: 10px;
            height: 10px;
            left: 75%;
            bottom: -10px;
            animation-delay: 2s;
            animation-duration: 13s;
        }
        
        .bubble:nth-child(8) {
            width: 14px;
            height: 14px;
            left: 90%;
            bottom: -10px;
            animation-delay: 5s;
            animation-duration: 15s;
        }
        
        @keyframes floatUp {
            0% {
                transform: translateY(0) translateX(0) scale(1);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            25% {
                transform: translateY(-25vh) translateX(10px) scale(1.1);
            }
            50% {
                transform: translateY(-50vh) translateX(-10px) scale(0.9);
            }
            75% {
                transform: translateY(-75vh) translateX(15px) scale(1.05);
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-110vh) translateX(-5px) scale(0.8);
                opacity: 0;
            }
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: top 0.5s ease;
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 3px;
            color: var(--text-primary);
            text-decoration: none;
            text-transform: uppercase;
        }
        .logo span { 
            color: var(--primary-blue);
            text-shadow: 0 0 20px var(--primary-blue);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            box-shadow: 0 0 10px var(--primary-blue);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover { 
            color: var(--text-primary);
        }
        .nav-links a:hover::before {
            width: 100%;
        }
        
        /* Dropdown Menu */
        .nav-links li {
            position: relative;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(10, 10, 15, 0.98);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 0.5rem 0;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
            z-index: 1001;
        }
        
        .nav-links li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }
        
        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.7rem;
            letter-spacing: 1px;
            border-bottom: 1px solid rgba(59, 130, 246, 0.1);
        }
        
        .dropdown-menu a:last-child {
            border-bottom: none;
        }
        
        .dropdown-menu a::before {
            display: none;
        }
        
        .nav-book-btn {
            background: transparent;
            color: var(--primary-blue);
            border: 1px solid var(--primary-blue);
            padding: 0.6rem 1.2rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-decoration: none;
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
            transition: all 0.3s ease;
            margin-left: 1rem;
        }
        .nav-book-btn:hover {
            background: rgba(59, 130, 246, 0.1);
            border-color: var(--accent-blue);
            color: var(--accent-blue);
            box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
        }
        .nav-cta::before { display: none !important; }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--primary-blue);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: transparent;
            padding-top: 80px;
            overflow: hidden;
        }
        
        .hero-water-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(180deg, 
                    rgba(5, 10, 20, 0.7) 0%, 
                    rgba(5, 10, 20, 0.5) 30%, 
                    rgba(5, 10, 20, 0.4) 50%, 
                    rgba(5, 10, 20, 0.5) 70%, 
                    rgba(5, 10, 20, 0.7) 100%);
            pointer-events: none;
            z-index: 1;
        }
        
        .hero-water-waves {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            z-index: 0;
        }
        
        .hero-water-waves::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(ellipse 100% 60% at 30% 50%, rgba(59, 130, 246, 0.5) 0%, transparent 50%),
                radial-gradient(ellipse 80% 50% at 70% 70%, rgba(37, 99, 235, 0.4) 0%, transparent 45%),
                radial-gradient(ellipse 60% 40% at 50% 30%, rgba(14, 165, 233, 0.3) 0%, transparent 40%);
            animation: heroWaterFlow 12s ease-in-out infinite;
        }
        
        @keyframes heroWaterFlow {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(3%, 2%) scale(1.05);
            }
            66% {
                transform: translate(-2%, 1%) scale(0.98);
            }
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                radial-gradient(ellipse at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(96, 165, 250, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .grid-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: 
                linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 2rem;
            margin-top: -5vh;
        }
        
        .hero-primary-title {
            font-size: clamp(3.5rem, 10vw, 7rem);
            font-weight: 800;
            letter-spacing: 0.08em;
            margin-bottom: 0.5rem;
            line-height: 1;
            text-transform: uppercase;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            text-shadow: 0 0 60px rgba(255, 255, 255, 0.15);
        }
        
        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 300;
            letter-spacing: 0.35em;
            color: #d4af37;
            margin-bottom: 2rem;
            text-transform: uppercase;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
        }
        
        .hero-offer-badge {
            display: inline-block;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid var(--primary-blue);
            color: var(--primary-blue);
            padding: 0.75rem 2rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
        }
        
        .hero-offer-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
        }
        
        .hero-offer-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-tagline {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
        }
        
        .hero-founder {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }
        
        .hero-founder strong {
            color: var(--text-primary);
        }
        
        .hero-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 650px;
            margin: 0 auto 3rem;
        }
        
        .hero-cta {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1rem 2.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            display: inline-block;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #f9e79f 100%);
            color: #0a1628;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
            font-weight: 700;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--primary-blue);
            border: 1px solid var(--primary-blue);
            box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
        }
        .btn-secondary:hover {
            background: rgba(37, 99, 235, 0.1);
            box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
        }
        
        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator::after {
            content: '↓';
            font-size: 1.2rem;
            color: var(--primary-blue);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }
        
        /* Section Styles */
        .section { 
            padding: 6rem 2rem; 
            position: relative;
        }
        
        .section-alt { 
            background: var(--bg-ocean);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-label {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            text-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
        }
        
        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-primary);
            text-shadow: 
                0 0 20px rgba(37, 99, 235, 0.3),
                0 0 40px rgba(37, 99, 235, 0.1);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        /* How We Help Section */
        .how-we-help-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .how-we-help-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .how-we-help-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
            transform: translateY(-5px);
        }
        
        .how-we-help-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
        }
        
        .how-we-help-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        
        .how-we-help-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2rem;
            flex-grow: 1;
        }
        
        .how-we-help-btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--primary-blue);
            border: 1px solid var(--primary-blue);
            border-radius: 4px;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
        }
        
        .how-we-help-btn:hover {
            background: rgba(59, 130, 246, 0.1);
            border-color: var(--accent-blue);
            color: var(--accent-blue);
            box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
        }
        
        /* How To Start Section */
        .how-to-start-section {
            background: var(--bg-ocean);
            padding: 6rem 2rem;
        }
        
        .how-to-start-steps {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 1rem;
            max-width: 1100px;
            margin: 0 auto 3rem;
        }
        
        .how-to-start-step {
            flex: 1;
            text-align: center;
            padding: 2rem;
            max-width: 320px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
        }
        
        .step-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        
        .step-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        .step-connector {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
            margin-top: 2.5rem;
            opacity: 0.5;
            flex-shrink: 0;
        }
        
        .how-to-start-cta {
            text-align: center;
            margin-top: 2rem;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--bg-deep);
            padding: 6rem 2rem;
        }
        
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            border-bottom: 1px solid var(--border);
        }
        
        .faq-question {
            width: 100%;
            padding: 1.5rem 0;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
            font-family: 'Inter', sans-serif;
        }
        
        .faq-question:hover {
            color: var(--primary-blue);
        }
        
        .faq-icon {
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--primary-blue);
            transition: transform 0.3s ease;
            margin-left: 1rem;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-bottom: 1.5rem;
        }
        
        .faq-answer p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        
        .faq-answer p:last-child {
            margin-bottom: 0;
        }
        
        /* Who We Work With Section */
        .who-we-work-with-section {
            background: var(--bg-ocean);
            padding: 6rem 2rem;
        }
        
        .who-we-work-with-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto 4rem;
        }
        
        .who-we-work-with-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .who-we-work-with-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
            transform: translateY(-5px);
        }
        
        .who-we-work-with-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
        }
        
        .who-we-work-with-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }
        
        .who-we-work-with-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        .who-we-work-with-closing {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .who-we-work-with-closing-text {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        /* Your First Visit Section */
        .first-visit-section {
            background: var(--bg-deep);
            padding: 6rem 2rem;
        }
        
        .first-visit-content {
            max-width: 750px;
            margin: 0 auto;
        }
        
        .first-visit-intro {
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 1.8;
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .first-visit-points {
            margin-bottom: 3rem;
        }
        
        .first-visit-point {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .first-visit-point:last-child {
            margin-bottom: 0;
        }
        
        .first-visit-bullet {
            color: var(--primary-blue);
            font-size: 1.5rem;
            font-weight: 300;
            line-height: 1.5;
            flex-shrink: 0;
        }
        
        .first-visit-point p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 0;
        }
        
        .first-visit-closing {
            font-size: 1.1rem;
            color: var(--text-primary);
            line-height: 1.8;
            text-align: center;
            font-style: italic;
        }
        
        /* Philosophy Section */
        .philosophy-section {
            background: var(--bg-ocean);
            padding: 6rem 2rem;
        }
        
        .philosophy-content {
            max-width: 750px;
            margin: 0 auto;
        }
        
        .philosophy-title {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary-blue);
            margin-bottom: 3rem;
            text-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
        }
        
        .philosophy-body {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 2;
        }
        
        .philosophy-body p {
            margin-bottom: 1.5rem;
        }
        
        .philosophy-lead {
            font-size: 1.35rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .philosophy-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 2rem;
        }
        
        .philosophy-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
            font-weight: 400;
        }
        
        .philosophy-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
        }
        
        .philosophy-closing {
            font-size: 1.15rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            line-height: 1.8;
        }
        
        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }
        
        .about-content h3 {
            font-size: 1rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem;
            color: var(--primary-blue);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .about-content h3:first-child {
            margin-top: 0;
        }
        
        .about-content p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }
        
        .about-content strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        
        .pillars-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
        
        .pillars-list li {
            color: var(--text-secondary);
            font-size: 0.95rem;
            padding: 0.75rem 0;
            padding-left: 1.5rem;
            position: relative;
            border-bottom: 1px solid var(--border);
        }
        
        .pillars-list li::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-size: 1.2rem;
        }
        
        .pillars-list li strong {
            color: var(--text-primary);
        }
        
        .values-grid {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }
        
        .value-tag {
            background: rgba(37, 99, 235, 0.1);
            border: 1px solid var(--border);
            color: var(--primary-blue);
            padding: 0.5rem 1.2rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: -10px; left: -10px; right: 10px; bottom: 10px;
            border: 1px solid var(--primary-blue);
            border-radius: 8px;
            opacity: 0.3;
            pointer-events: none;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 8px;
            border: 1px solid var(--border);
        }
        
        /* Pillars Section */
        .pillars-section {
            background: 
                radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                var(--bg-ocean);
        }
        
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .pillar-card {
            background: var(--bg-card);
            border-radius: 8px;
            padding: 3rem 2rem;
            border: 1px solid var(--border);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pillar-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            box-shadow: 0 0 20px currentColor;
        }
        
        .pillar-card.health { border-color: rgba(59, 130, 246, 0.3); }
        .pillar-card.health::before { background: var(--health); }
        .pillar-card.performance { border-color: rgba(37, 99, 235, 0.3); }
        .pillar-card.performance::before { background: var(--performance); }
        .pillar-card.mentorship { border-color: rgba(29, 78, 216, 0.3); }
        .pillar-card.mentorship::before { background: var(--mentorship); }
        
        .pillar-card:hover {
            transform: translateY(-8px);
        }
        
        .pillar-card.health:hover {
            border-color: var(--health);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
        }
        .pillar-card.performance:hover {
            border-color: var(--performance);
            box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
        }
        .pillar-card.mentorship:hover {
            border-color: var(--mentorship);
            box-shadow: 0 20px 60px rgba(29, 78, 216, 0.15);
        }
        
        .pillar-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            border: 2px solid;
        }
        
        .pillar-card.health .pillar-icon {
            border-color: var(--health);
            color: var(--health);
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
        }
        .pillar-card.performance .pillar-icon {
            border-color: var(--performance);
            color: var(--performance);
            box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
        }
        .pillar-card.mentorship .pillar-icon {
            border-color: var(--mentorship);
            color: var(--mentorship);
            box-shadow: 0 0 20px rgba(29, 78, 216, 0.3);
        }
        
        .pillar-tagline {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .pillar-card.health .pillar-tagline { color: var(--health); }
        .pillar-card.performance .pillar-tagline { color: var(--performance); }
        .pillar-card.mentorship .pillar-tagline { color: var(--light-blue); }
        
        .pillar-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .pillar-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .pillar-includes {
            color: var(--text-secondary);
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }
        
        .pillar-includes strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        
        .pillar-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
        
        .pillar-features li {
            color: var(--text-secondary);
            font-size: 0.85rem;
            padding: 0.5rem 0;
            padding-left: 1.2rem;
            position: relative;
        }
        
        .pillar-card.health .pillar-features li::before { color: var(--health); }
        .pillar-card.performance .pillar-features li::before { color: var(--performance); }
        .pillar-card.mentorship .pillar-features li::before { color: var(--light-blue); }
        
        .pillar-features li::before {
            content: '›';
            position: absolute;
            left: 0;
            font-size: 1rem;
        }
        
        .pillar-btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            border: 1px solid;
            margin-top: 1rem;
        }
        
        .pillar-card.health .pillar-btn {
            color: var(--health);
            border-color: var(--health);
        }
        .pillar-card.health .pillar-btn:hover {
            background: var(--health);
            color: white;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
        }
        
        .pillar-card.performance .pillar-btn {
            color: var(--performance);
            border-color: var(--performance);
        }
        .pillar-card.performance .pillar-btn:hover {
            background: var(--performance);
            color: white;
            box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
        }
        
        .pillar-card.mentorship .pillar-btn {
            color: var(--mentorship);
            border-color: var(--mentorship);
        }
        .pillar-card.mentorship .pillar-btn:hover {
            background: var(--mentorship);
            color: white;
            box-shadow: 0 0 20px rgba(29, 78, 216, 0.4);
        }
        
        /* Pillar Expandable Content */
        .pillar-expandable {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, opacity 0.4s ease-out, padding 0.4s ease-out;
            opacity: 0;
            padding-top: 0;
        }
        
        .pillar-expandable.expanded {
            max-height: 2000px;
            opacity: 1;
            padding-top: 2rem;
        }
        
        .pillar-expandable-content {
            border-top: 1px solid var(--border);
            padding-top: 2rem;
            text-align: left;
        }
        
        .pillar-expandable-content h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .pillar-card.health .pillar-expandable-content h4 {
            color: var(--health);
        }
        .pillar-card.performance .pillar-expandable-content h4 {
            color: var(--performance);
        }
        .pillar-card.mentorship .pillar-expandable-content h4 {
            color: var(--mentorship);
        }
        
        .pillar-expandable-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }
        
        .pillar-expandable-content strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        
        .pillar-services-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0 1.5rem;
        }
        
        .pillar-services-list li {
            color: var(--text-secondary);
            font-size: 0.9rem;
            padding: 0.6rem 0;
            padding-left: 1.5rem;
            position: relative;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .pillar-card.health .pillar-services-list li::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: var(--health);
            font-size: 0.7rem;
        }
        .pillar-card.performance .pillar-services-list li::before {
            content: '▲';
            position: absolute;
            left: 0;
            color: var(--performance);
            font-size: 0.7rem;
        }
        .pillar-card.mentorship .pillar-services-list li::before {
            content: '●';
            position: absolute;
            left: 0;
            color: var(--mentorship);
            font-size: 0.7rem;
        }
        
        .pillar-expandable-content .closing-statement {
            font-style: italic;
            color: var(--text-primary);
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }
        
        /* Pillar Video Section */
        .pillar-video-section {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }
        
        .pillar-video-section h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .pillar-video {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .pillar-video iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }
        
        /* Health Pillar Images */
        .pillar-image-main {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(59, 130, 246, 0.3);
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
        }
        
        .pillar-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
        }
        
        .pillar-image-grid img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 6px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            transition: all 0.3s ease;
        }
        
        .pillar-image-grid img:hover {
            border-color: var(--health);
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
        }
        
        /* Pillar Slideshow */
        .pillar-slideshow {
            position: relative;
            width: 100%;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        
        .pillar-slideshow .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        
        .pillar-slideshow .slide.active {
            opacity: 1;
        }
        
        .pillar-slideshow .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .pillar-card.performance .pillar-slideshow {
            border: 1px solid rgba(2, 132, 199, 0.3);
            box-shadow: 0 0 20px rgba(2, 132, 199, 0.1);
        }
        
        .pillar-card.mentorship .pillar-slideshow {
            border: 1px solid rgba(3, 105, 161, 0.3);
            box-shadow: 0 0 20px rgba(3, 105, 161, 0.1);
        }
        
        .pillar-card.health .pillar-slideshow {
            border: 1px solid rgba(59, 130, 246, 0.3);
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
        }
        
        .pillar-card.health .slideshow-dot.active {
            background: var(--health);
            box-shadow: 0 0 10px var(--health);
        }
        
        .pillar-card.health .slideshow-arrow:hover {
            background: var(--health);
            border-color: var(--health);
            color: white;
        }
        
        .slideshow-nav {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        
        .slideshow-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }
        
        .slideshow-dot:hover {
            background: rgba(255, 255, 255, 0.7);
        }
        
        .slideshow-dot.active {
            background: var(--primary-blue);
            box-shadow: 0 0 10px var(--primary-blue);
        }
        
        .pillar-card.performance .slideshow-dot.active {
            background: var(--performance);
            box-shadow: 0 0 10px var(--performance);
        }
        
        .pillar-card.mentorship .slideshow-dot.active {
            background: var(--mentorship);
            box-shadow: 0 0 10px var(--mentorship);
        }
        
        .slideshow-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            pointer-events: none;
        }
        
        .slideshow-arrow {
            width: 32px;
            height: 32px;
            background: rgba(5, 10, 20, 0.7);
            border: 1px solid var(--border);
            border-radius: 50%;
            color: var(--text-primary);
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: auto;
        }
        
        .slideshow-arrow:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
        }
        
        .pillar-card.performance .slideshow-arrow:hover {
            background: var(--performance);
            border-color: var(--performance);
            color: white;
        }
        
        .pillar-card.mentorship .slideshow-arrow:hover {
            background: var(--mentorship);
            border-color: var(--mentorship);
            color: white;
        }
        
        /* Reviews Section */
        .reviews-section {
            background: var(--bg-ocean);
        }
        
        .reviews-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--bg-card);
            border-radius: 12px;
            border: 1px solid var(--border);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .google-rating {
            margin-bottom: 1rem;
        }
        
        .google-rating .stars {
            font-size: 2rem;
            color: #ffc107;
            letter-spacing: 4px;
            text-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
        }
        
        .rating-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-top: 0.5rem;
        }
        
        .business-info h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }
        
        .business-info p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        .google-reviews-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: var(--primary-blue);
            border: 1px solid var(--primary-blue);
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 1.5rem;
            box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
        }
        
        .google-reviews-btn:hover {
            background: var(--primary-blue);
            color: white;
            box-shadow: 0 0 25px var(--primary-blue);
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        
        .review-card {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 0 30px rgba(14, 165, 233, 0.1);
            transform: translateY(-4px);
        }
        
        /* Video Testimonials */
        .video-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .video-testimonial-card {
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        .video-testimonial-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 0 30px rgba(14, 165, 233, 0.15);
            transform: translateY(-4px);
        }
        
        .video-testimonial-card.wide {
            grid-column: span 1;
        }
        
        .video-testimonial-embed {
            position: relative;
            width: 100%;
            aspect-ratio: 9/16;
        }
        
        .video-testimonial-card.wide .video-testimonial-embed {
            aspect-ratio: 16/9;
        }
        
        .video-testimonial-embed iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }
        
        .review-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .reviewer-avatar {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 700;
            color: white;
        }
        
        .reviewer-info h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }
        
        .review-stars {
            font-size: 0.85rem;
            color: #ffc107;
            letter-spacing: 1px;
        }
        
        .review-text {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        
        .review-date {
            font-size: 0.75rem;
            color: var(--text-secondary);
            opacity: 0.7;
        }
        
        /* Video Testimonials */
        .video-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .video-testimonial-card {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            background: var(--bg-card);
        }
        
        .video-testimonial-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
        }
        
        .video-testimonial-card.wide {
            grid-column: span 1;
        }
        
        .video-testimonial-embed {
            position: relative;
            width: 100%;
            aspect-ratio: 9/16;
        }
        
        .video-testimonial-embed iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }
        
        .video-testimonial-card.wide .video-testimonial-embed {
            aspect-ratio: 16/9;
        }
        
        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .video-testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .video-testimonials-grid {
                grid-template-columns: 1fr;
            }
            .video-testimonial-card.wide {
                grid-column: span 1;
            }
        }
        
        /* AKORA Conversations */
        .conversations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .conversation-card {
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        .conversation-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 0 30px rgba(37, 99, 235, 0.15);
            transform: translateY(-4px);
        }
        
        .conversation-card.featured {
            grid-column: span 3;
        }
        
        .conversation-video {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
        }
        
        .conversation-video.short {
            aspect-ratio: 9/16;
        }
        
        .conversation-video iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }
        
        .conversation-info {
            padding: 1.5rem;
        }
        
        .conversation-info h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .conversation-info p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        @media (max-width: 1024px) {
            .conversations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .conversation-card.featured {
                grid-column: span 2;
            }
        }
        
        @media (max-width: 768px) {
            .conversations-grid {
                grid-template-columns: 1fr;
            }
            .conversation-card.featured {
                grid-column: span 1;
            }
        }
        
        /* Spotify Section */
        .spotify-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid var(--border);
        }
        
        .spotify-title {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            text-align: center;
            text-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
        }
        
        .spotify-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        
        .spotify-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .spotify-card:hover {
            border-color: #1DB954;
            box-shadow: 0 0 30px rgba(29, 185, 84, 0.2);
            transform: translateY(-4px);
        }
        
        .spotify-icon {
            width: 48px;
            height: 48px;
            background: #1DB954;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .spotify-icon svg {
            width: 28px;
            height: 28px;
            color: white;
        }
        
        .spotify-info h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }
        
        .spotify-info p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        
        @media (max-width: 1024px) {
            .spotify-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .spotify-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Podcast Links Section */
        .podcast-links-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid var(--border);
        }
        
        .podcast-title {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            text-align: center;
            text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
        }
        
        .podcast-links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        
        .podcast-link-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .podcast-link-card:hover {
            transform: translateY(-4px);
        }
        
        .podcast-link-card.spotify:hover {
            border-color: #1DB954;
            box-shadow: 0 0 30px rgba(29, 185, 84, 0.2);
        }
        
        .podcast-link-card.podbean:hover {
            border-color: #9b59b6;
            box-shadow: 0 0 30px rgba(155, 89, 182, 0.2);
        }
        
        .podcast-link-card.soundcloud:hover {
            border-color: #ff5500;
            box-shadow: 0 0 30px rgba(255, 85, 0, 0.2);
        }
        
        .podcast-link-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .podcast-link-card.spotify .podcast-link-icon {
            background: #1DB954;
        }
        
        .podcast-link-card.podbean .podcast-link-icon {
            background: #9b59b6;
        }
        
        .podcast-link-card.soundcloud .podcast-link-icon {
            background: #ff5500;
        }
        
        .podcast-link-icon svg {
            width: 28px;
            height: 28px;
            color: white;
        }
        
        .podcast-link-info h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }
        
        .podcast-link-info p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        
        @media (max-width: 1024px) {
            .podcast-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .podcast-links-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Mentorship Videos Section */
        .mentorship-videos-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid var(--border);
        }
        
        .mentorship-videos-title {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            text-align: center;
            text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
        }
        
        .mentorship-videos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        @media (max-width: 1024px) {
            .mentorship-videos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .mentorship-video-card {
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        .mentorship-video-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
            transform: translateY(-4px);
        }
        
        .mentorship-video {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
        }
        
        .mentorship-video iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }
        
        @media (max-width: 768px) {
            .mentorship-videos-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Partners Section */
        .partners-section {
            background: var(--bg-ocean);
            padding: 4rem 2rem;
        }
        
        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }
        
        .partner-logo {
            max-width: 180px;
            opacity: 0.7;
            transition: all 0.3s ease;
            filter: grayscale(100%);
        }
        
        .partner-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }
        
        .partner-logo img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
        
        @media (max-width: 768px) {
            .partners-grid {
                gap: 2rem;
            }
            .partner-logo {
                max-width: 140px;
            }
        }
        
        /* Ambient Sound Toggle */
        .ambient-sound-toggle {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
        
        .ambient-sound-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 0.6rem 1rem;
            color: var(--text-secondary);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .ambient-sound-btn:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
        }
        
        .ambient-sound-btn.playing {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
        }
        
        .ambient-sound-btn .sound-icon {
            width: 16px;
            height: 16px;
        }
        
        .ambient-sound-btn .sound-waves {
            display: flex;
            align-items: center;
            gap: 2px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .ambient-sound-btn.playing .sound-waves {
            opacity: 1;
        }
        
        .ambient-sound-btn .sound-waves span {
            width: 2px;
            height: 8px;
            background: var(--primary-blue);
            border-radius: 1px;
            animation: soundWave 1s ease-in-out infinite;
        }
        
        .ambient-sound-btn .sound-waves span:nth-child(2) {
            animation-delay: 0.1s;
        }
        
        .ambient-sound-btn .sound-waves span:nth-child(3) {
            animation-delay: 0.2s;
        }
        
        @keyframes soundWave {
            0%, 100% { height: 4px; }
            50% { height: 12px; }
        }
        
        .ambient-sound-note {
            font-size: 0.6rem;
            color: var(--text-secondary);
            opacity: 0.7;
            margin-left: 0.5rem;
            max-width: 150px;
            line-height: 1.4;
        }
        
        /* About Section Expandable */
        .about-expandable {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, opacity 0.4s ease-out, padding 0.4s ease-out;
            opacity: 0;
            padding-top: 0;
        }
        
        .about-expandable.expanded {
            max-height: 2000px;
            opacity: 1;
            padding-top: 1.5rem;
        }
        
        .about-expandable-content {
            border-top: 1px solid var(--border);
            padding-top: 1.5rem;
        }
        
        .about-expandable-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.9;
            margin-bottom: 1.2rem;
        }
        
        .about-expandable-content strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        
        .about-expandable-content .philosophy-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0 1.5rem;
        }
        
        .about-expandable-content .philosophy-list li {
            color: var(--text-secondary);
            font-size: 0.9rem;
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .about-expandable-content .philosophy-list li::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-size: 1.2rem;
        }
        
        .about-expandable-content .closing-quote {
            font-style: italic;
            color: var(--primary-blue);
            margin-top: 1.5rem;
            padding: 1rem 1.5rem;
            border-left: 2px solid var(--primary-blue);
            background: rgba(37, 99, 235, 0.05);
        }
        
        .about-explore-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: var(--primary-blue);
            border: 1px solid var(--primary-blue);
            padding: 0.6rem 1.5rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
        }
        
        .about-explore-btn:hover {
            background: var(--primary-blue);
            color: white;
            box-shadow: 0 0 25px var(--primary-blue);
        }
        
        .about-explore-btn::after {
            content: '↓';
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .about-explore-btn.expanded::after {
            transform: rotate(180deg);
        }
        
        /* Why Section */
        .why-section {
            text-align: center;
        }
        
        .why-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }
        
        .why-title span {
            color: var(--primary-blue);
        }
        
        .why-description {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.9;
            max-width: 700px;
            margin: 0 auto 3rem;
        }
        
        .why-values {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        
        .why-value {
            color: var(--text-secondary);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .why-value::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: var(--primary-blue);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--primary-blue);
        }
        
        /* Video Section */
        .video-section {
            background: var(--bg-ocean);
        }
        
        .video-container {
            max-width: 350px;
            margin: 0 auto;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 0 40px rgba(37, 99, 235, 0.1);
        }
        
        .video-container iframe {
            width: 100%;
            aspect-ratio: 9/16;
            border: none;
            display: block;
        }
        
        .conversation-video-large {
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 0 40px rgba(37, 99, 235, 0.1);
        }
        
        .conversation-video-large iframe {
            width: 100%;
            aspect-ratio: 16/9;
            border: none;
            display: block;
        }
        
        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        
        .testimonial-card {
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            background: var(--bg-card);
        }
        
        .testimonial-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 0 30px rgba(37, 99, 235, 0.1);
        }
        
        .testimonial-card iframe {
            width: 100%;
            aspect-ratio: 9/16;
            border: none;
            display: block;
        }
        
        .testimonial-card.wide iframe {
            aspect-ratio: 16/9;
        }
        
        .google-reviews-link {
            text-align: center;
            margin-top: 3rem;
        }
        
        .google-reviews-link a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .google-reviews-link a:hover {
            text-shadow: 0 0 10px var(--primary-blue);
        }
        
        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-info h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary-blue);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .contact-steps {
            margin: 1.5rem 0;
        }
        
        .contact-step {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .step-number {
            width: 32px;
            height: 32px;
            background: transparent;
            border: 1px solid var(--primary-blue);
            color: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
        }
        
        .contact-step p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            padding-top: 0.4rem;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .contact-icon {
            width: 40px; height: 40px;
            background: rgba(37, 99, 235, 0.1);
            border: 1px solid var(--border);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 1rem;
            flex-shrink: 0;
        }
        
        .contact-item a {
            color: var(--text-secondary);
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .contact-item a:hover { 
            color: var(--primary-blue);
            text-shadow: 0 0 10px var(--primary-blue);
        }
        
        .contact-form {
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: 8px;
            border: 1px solid var(--border);
        }
        
        .form-group { margin-bottom: 1.5rem; }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background: var(--bg-deep);
            border: 1px solid var(--border);
            border-radius: 4px;
            color: var(--text-primary);
            font-size: 0.9rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-secondary);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b9bb4' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
        }
        
        .form-note {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.75rem;
            margin-top: 1.5rem;
            letter-spacing: 0.5px;
        }
        
        /* Final CTA */
        .final-cta {
            background: var(--bg-ocean);
            text-align: center;
            padding: 5rem 2rem;
            border-top: 1px solid var(--border);
        }
        
        .final-cta h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        .final-cta p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto 2rem;
            line-height: 1.8;
        }
        
        .final-cta small {
            display: block;
            color: var(--text-secondary);
            font-size: 0.75rem;
            margin-top: 1.5rem;
            letter-spacing: 1px;
        }
        
        /* Footer */
        .footer {
            background: var(--bg-deep);
            border-top: 1px solid var(--border);
            padding: 3rem 2rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        
        .footer-links {
            display: flex;
            gap: 2.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover { 
            color: var(--primary-blue);
            text-shadow: 0 0 10px var(--primary-blue);
        }
        
        .footer p {
            color: var(--text-secondary);
            font-size: 0.75rem;
            letter-spacing: 1px;
        }
        
        /* Mobile CTA */
        .mobile-cta {
            display: none;
            position: fixed;
            bottom: 0; left: 0; right: 0;
            background: var(--bg-deep);
            border-top: 1px solid var(--border);
            padding: 1rem;
            z-index: 999;
        }
        
        .mobile-cta .btn { width: 100%; text-align: center; }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .pillars-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%; left: 0; right: 0;
                background: rgba(5, 10, 20, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-top: 1px solid var(--border);
            }
            
            .nav-links.active { display: flex; }
            .mobile-menu-btn { display: block; }
            .nav-book-btn { display: none; }
            
            .dropdown-menu {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                background: transparent;
                border: none;
                padding-left: 1rem;
                margin-top: 0.5rem;
                min-width: auto;
            }
            
            .dropdown-menu a {
                padding: 0.5rem 0;
                border-bottom: none;
            }
            
            .hero-primary-title {
                letter-spacing: 0.05em;
                font-size: clamp(2.5rem, 12vw, 4rem);
            }
            
            .hero-subtitle {
                letter-spacing: 0.2em;
                font-size: clamp(0.9rem, 4vw, 1.2rem);
            }
            
            .hero-cta { flex-direction: column; align-items: center; }
            .btn { width: 100%; max-width: 300px; }
            
            .why-values { flex-direction: column; gap: 1rem; align-items: center; }
            
            .pillars-grid,
            .testimonials-grid,
            .how-we-help-grid {
                grid-template-columns: 1fr;
            }
            
            .how-we-help-card {
                padding: 2rem 1.5rem;
            }
            
            .how-to-start-steps {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
            
            .step-connector {
                width: 2px;
                height: 40px;
                margin-top: 0;
                background: linear-gradient(180deg, var(--primary-blue), var(--accent-blue));
            }
            
            .how-to-start-step {
                max-width: 100%;
                padding: 1.5rem;
            }
            
            .who-we-work-with-grid {
                grid-template-columns: 1fr;
            }
            
            .who-we-work-with-card {
                padding: 2rem 1.5rem;
            }
            
            .first-visit-point {
                gap: 1rem;
            }
            
            .first-visit-intro,
            .first-visit-closing {
                text-align: left;
            }
            
            .form-row { grid-template-columns: 1fr; }
            
            .mobile-cta { display: block; }
            .section { padding-bottom: 6rem; }
            
            .scroll-indicator { display: none; }
        }
        
        @media (max-width: 480px) {
            .nav-container { padding: 1rem; }
            .section { padding: 4rem 1rem; }
            .hero-content { padding: 1rem; }
        }
        
        /* Newsletter Section - Small Wins Daily */
        .newsletter-section {
            padding: 5rem 2rem;
            background: linear-gradient(180deg, rgba(10, 22, 40, 0.8) 0%, rgba(15, 31, 58, 0.9) 100%);
            border-top: 1px solid rgba(59, 130, 246, 0.1);
        }
        
        .newsletter-content {
            max-width: 640px;
            margin: 0 auto;
            text-align: center;
        }
        
        .newsletter-title {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 0.15em;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }
        
        .newsletter-text {
            margin-bottom: 2rem;
        }
        
        .newsletter-text p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 0.25rem;
        }
        
        .newsletter-embed {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-embed iframe {
            display: block;
            width: 100%;
            border: 0;
            overflow: hidden;
        }
        
        @media (max-width: 600px) {
            .newsletter-section { padding: 4rem 1.5rem; }
            .newsletter-title { font-size: 1.5rem; }
            .newsletter-embed { max-width: 100%; }
        }
        
        /* ============================================
           CONVERSATIONS & ARTICLES LINK COLOUR FIX
           Applied at end of file for highest specificity
           ============================================ */
        
        /* Featured Cards - All states */
        .featured-card,
        .featured-card:link,
        .featured-card:visited,
        .featured-card:hover,
        .featured-card:active {
            color: #ffffff !important;
            text-decoration: none !important;
        }
        
        .featured-card *,
        .featured-card:link *,
        .featured-card:visited *,
        .featured-card:hover *,
        .featured-card:active * {
            color: #ffffff !important;
            opacity: 1 !important;
            -webkit-text-fill-color: #ffffff !important;
        }
        
        /* Conversation Cards - All states */
        .conversation-card,
        .conversation-card:link,
        .conversation-card:visited,
        .conversation-card:hover,
        .conversation-card:active {
            color: #ffffff !important;
            text-decoration: none !important;
        }
        
        .conversation-card *,
        .conversation-card:link *,
        .conversation-card:visited *,
        .conversation-card:hover *,
        .conversation-card:active * {
            color: #ffffff !important;
            opacity: 1 !important;
            -webkit-text-fill-color: #ffffff !important;
        }
        
        /* Continue Reading Links - All states */
        .continue-reading-link,
        .continue-reading-link:link,
        .continue-reading-link:visited,
        .continue-reading-link:hover,
        .continue-reading-link:active {
            color: #ffffff !important;
            text-decoration: none !important;
            opacity: 1 !important;
            -webkit-text-fill-color: #ffffff !important;
        }
        
        /* Specific title overrides with maximum specificity */
        .featured-card .featured-title,
        .featured-card:link .featured-title,
        .featured-card:visited .featured-title,
        .featured-card:hover .featured-title,
        .featured-card:active .featured-title {
            color: #ffffff !important;
            opacity: 1 !important;
            -webkit-text-fill-color: #ffffff !important;
        }
        
        .conversation-card .conversation-card-title,
        .conversation-card:link .conversation-card-title,
        .conversation-card:visited .conversation-card-title,
        .conversation-card:hover .conversation-card-title,
        .conversation-card:active .conversation-card-title {
            color: #ffffff !important;
            opacity: 1 !important;
            -webkit-text-fill-color: #ffffff !important;
        }
    