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

        :root {
            --navy: #1e3a5f;
            --gold: #d4af37;
            --light-gold: #e8d7a0;
            --cream: #faf8f5;
            --dark-gray: #2c2c2c;
            --light-gray: #666;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-gray);
            line-height: 1.7;
            background: var(--navy);
        }

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

        /* Navigation */
        nav {
            background: var(--navy);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 4rem;
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

        nav .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem !important;
            font-weight: 700;
            color: #ffffff !important;
            letter-spacing: 2px;
            white-space: nowrap;
            margin-right: 2rem;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            flex-shrink: 0;
        }

        nav .logo a {
            font-size: 1.8rem !important;
            color: #ffffff !important;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.4rem;
            align-items: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--gold);
        }

        .cta-button {
            border: 1px solid white;
            padding: 0.6rem 1.5rem;
            white-space: nowrap;
            border-radius: 2px;
            transition: all 0.3s;
        }

        .cta-button:hover {
            background: white;
            color: var(--navy) !important;
        }



        .call-btn-wrapper {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .call-btn-label {
            color: white;
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        /* Green Animated Call Button */
        .green-call-btn {
            position: relative;
            display: inline-flex;
            margin-left: 0.5rem;
            width: 45px;
            height: 45px;
            background: #25D366;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            z-index: 100;
            animation: btn-pulse 2s ease-in-out infinite;
        }

        .green-call-btn:hover {
            transform: scale(1.1) !important;
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
            color: white !important;
        }

        .green-call-btn svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .green-call-btn::before,
        .green-call-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            border: 2px solid #25D366;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: ring-ripple 2s ease-out infinite;
            opacity: 0;
        }

        .green-call-btn::after {
            animation-delay: 1s;
        }

        @keyframes ring-ripple {
            0% { width: 100%; height: 100%; opacity: 0.8; }
            100% { width: 200%; height: 200%; opacity: 0; }
        }

        @keyframes btn-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 85vh;
            min-height: 700px;
            background: linear-gradient(rgba(20, 30, 48, 0.5), rgba(30, 58, 95, 0.7)), 
                        url('images/extracted_1.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        /* Subtle vignette effect */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 4rem;
            width: 100%;
        }

        /* Scrolling City Ticker */
        .city-ticker {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(30, 58, 95, 0.9);
            padding: 1.5rem 0;
            overflow: hidden;
            z-index: 3;
        }

        .ticker-wrap {
            display: flex;
            animation: scroll 40s linear infinite;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            white-space: nowrap;
            padding: 0 3rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .ticker-item::after {
            content: "•";
            margin-left: 3rem;
            color: var(--gold);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .hero-label {
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .hero-brand {
            font-size: 4.5rem;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 0;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1;
        }

        .hero h1 {
            font-size: 4.5rem;
            color: white;
            margin-bottom: 1.5rem;
            max-width: 900px;
            line-height: 1.1;
        }

        .hero h1 .italic-accent {
            color: white;
            font-weight: 600;
        }

        .hero-tagline {
            font-size: 1.1rem;
            color: var(--gold);
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border-left: 3px solid var(--gold);
            padding-left: 1.5rem;
        }

        .hero p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 650px;
            margin-bottom: 3rem;
            line-height: 1.7;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            margin-top: 1rem;
        }

        .btn-primary, .btn-secondary {
            padding: 1.2rem 3rem;
            font-size: 0.95rem;
            border: none;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .btn-primary {
            background: #c9a362;
            color: white;
        }

        .btn-primary:hover {
            background: #b89354;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(201, 163, 98, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        /* Section Styling */
        section {
            padding: 8rem 4rem;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-label {
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .section-title {
            font-size: 3.5rem;
            margin-bottom: 3rem;
            color: var(--navy);
        }

        .section-title .italic-accent {
            color: var(--navy);
            font-weight: 600;
        }

        /* Stats Section */
        .stats-section {
            background: var(--cream);
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6rem;
            margin-top: 5rem;
        }

        .stat-item h3 {
            font-size: 4rem;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .stat-item h3 sup {
            font-size: 2.5rem;
            color: var(--gold);
        }

        .stat-item p {
            font-size: 1rem;
            color: var(--light-gray);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
        }

        /* About Section */
        .about-section {
            background: white;
        }

        /* ACRS Advantage Section */
        .advantage-section {
            background: white;
            padding: 8rem 4rem;
        }

        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
            margin-top: 5rem;
        }

        .advantage-card {
            background: var(--cream);
            padding: 3rem;
            border-left: 4px solid var(--gold);
            border-radius: 2px;
        }

        .advantage-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .advantage-card h3 {
            font-size: 1.8rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .advantage-card p {
            color: var(--dark-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .advantage-card em {
            font-style: italic;
            color: var(--navy);
        }

        .advantage-list {
            list-style: none;
            padding-left: 0;
            margin-top: 2rem;
        }

        .advantage-list li {
            padding: 0.7rem 0;
            color: var(--dark-gray);
            position: relative;
            padding-left: 2rem;
        }

        .advantage-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .advantage-callout {
            margin-top: 4rem;
            padding: 3rem;
            background: var(--navy);
            text-align: center;
            border-radius: 2px;
        }

        .advantage-callout p {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-style: italic;
            color: white;
            line-height: 1.6;
            margin: 0;
        }

        /* Leadership Section */
        .leadership-section {
            background: var(--cream);
            padding: 8rem 4rem;
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
            margin-top: 5rem;
        }

        .leader-card {
            background: white;
            padding: 3rem;
            border-radius: 2px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
        }

        .leader-photo {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--navy) 0%, #2d5278 100%);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 2px;
        }

        .photo-placeholder {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            color: var(--gold);
            font-weight: 600;
        }

        .leader-content h3 {
            font-size: 1.8rem;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .leader-title {
            font-size: 1rem;
            color: var(--gold);
            font-weight: 500;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }

        .leader-bio-short p {
            color: var(--dark-gray);
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }

        .leader-bio-full {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
        }

        .leader-bio-full h4 {
            font-size: 1.3rem;
            color: var(--navy);
            margin: 2rem 0 1rem;
            font-weight: 600;
        }

        .leader-bio-full h4:first-child {
            margin-top: 0;
        }

        .leader-bio-full p {
            color: var(--dark-gray);
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }

        .leader-bio-full ul {
            margin: 1rem 0 1.5rem 2rem;
        }

        .leader-bio-full li {
            color: var(--dark-gray);
            line-height: 1.8;
            margin-bottom: 0.8rem;
        }

        .read-more-link {
            display: inline-block;
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
            margin-top: 1rem;
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }

        .read-more-link:hover {
            color: var(--navy);
            transform: translateX(5px);
        }

        .about-content {
            font-size: 1.35rem;
            line-height: 1.9;
            color: var(--dark-gray);
            width: 100%;
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        /* Pull Quote */
        .pull-quote {
            margin: 4rem 0;
            padding: 3rem 0;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }

        .pull-quote p {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-style: italic;
            color: var(--navy);
            text-align: center;
            line-height: 1.5;
        }

        /* Services Section */
        .services-section {
            background: var(--cream);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 5rem;
        }

        .service-card {
            background: white;
            overflow: hidden;
            border-radius: 0;
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .service-image {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .service-card:nth-child(1) .service-image {
            background: url('images/licensing.jpg'); background-size: cover; background-position: center;
        }

        .service-card:nth-child(2) .service-image {
            background: url('images/extracted_3.png');
        }

        .service-card:nth-child(3) .service-image {
            background: url('images/extracted_4.png');
        }

        .service-image::before {
            display: none;
        }

        .service-content {
            padding: 2.5rem;
        }

        .service-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--navy);
        }

        .service-content p {
            color: var(--light-gray);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .service-list {
            list-style: none;
            padding-left: 0;
        }

        .service-list li {
            padding: 0.5rem 0;
            color: var(--light-gray);
            font-size: 0.95rem;
        }

        .service-list li::before {
            content: "→";
            color: var(--gold);
            margin-right: 0.8rem;
            font-weight: bold;
        }

        /* Opportunity Section */
        .opportunity-section {
            background: white;
        }

        .opportunity-intro {
            font-size: 1.25rem;
            line-height: 1.9;
            margin-bottom: 4rem;
            color: var(--dark-gray);
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin: 3rem 0;
            overflow: hidden;
            border-radius: 2px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
        }

        .comparison-table thead {
            background: var(--navy);
            color: white;
        }

        .comparison-table th {
            padding: 1.5rem;
            text-align: left;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .comparison-table td {
            padding: 1.5rem;
            border-bottom: 1px solid #e0e0e0;
            color: var(--dark-gray);
        }

        .comparison-table tbody tr:nth-child(even) {
            background: var(--cream);
        }

        .comparison-table tbody tr:hover {
            background: rgba(212, 175, 55, 0.05);
        }

        .comparison-table td:first-child {
            font-weight: 600;
            color: var(--navy);
        }

        .highlight-africa {
            background: rgba(212, 175, 55, 0.1) !important;
            font-weight: 600;
            color: var(--navy);
        }

        /* Market Insights */
        .insights-section {
            background: var(--navy);
            color: white;
        }

        .insights-section .section-label {
            color: var(--light-gold);
        }

        .insights-section .section-title {
            color: white;
        }

        .insights-section .italic-accent {
            color: white;
            font-weight: 600;
        }

        .insights-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .insight-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 3rem;
            border-left: 3px solid var(--gold);
        }

        .insight-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }

        .insight-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .insight-card ul {
            list-style: none;
            padding-left: 0;
            margin-top: 1.5rem;
        }

        .insight-card li {
            padding: 0.7rem 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        .insight-card li::before {
            content: "✓";
            color: var(--gold);
            margin-right: 0.8rem;
            font-weight: bold;
        }

        /* Contact Section */


        /* Government Engagements Section */
        .engagements-section {
            background: var(--navy);
            color: white;
            padding: 8rem 4rem;
        }

        .engagements-section .section-label {
            color: var(--light-gold);
        }

        .engagements-section .section-title {
            color: white;
        }

        .engagements-intro {
            max-width: 800px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        .engagements-intro p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }

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

        .engagement-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            padding: 3rem;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .engagement-card:hover {
            transform: translateY(-3px);
            border-color: var(--gold);
        }

        .engagement-flag {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .engagement-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .engagement-card h4 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 1.2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .engagement-card p {
            font-size: 1.05rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.85);
        }

        .engagements-callout {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .engagements-callout p {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-style: italic;
            color: var(--gold);
            line-height: 1.7;
        }


        /* Client Projects / Case Studies Section */
        .case-studies-section {
            background: #f8f7f4;
            padding: 8rem 4rem;
        }

        .case-studies-intro {
            max-width: 800px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        .case-studies-intro p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #555;
        }

        .case-study-featured {
            background: white;
            border: 1px solid #e0ddd5;
            border-radius: 2px;
            overflow: hidden;
        }

        .case-study-header {
            background: var(--navy);
            color: white;
            padding: 3rem;
        }

        .case-study-status {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #4ade80;
            font-weight: 600;
            display: block;
            margin-bottom: 1rem;
        }

        .case-study-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

        .case-study-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
            margin-top: 0.5rem;
        }

        .case-study-metrics {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-bottom: 1px solid #e0ddd5;
        }

        .metric-card {
            padding: 2.5rem 2rem;
            text-align: center;
            border-right: 1px solid #e0ddd5;
        }

        .metric-card:last-child {
            border-right: none;
        }

        .metric-value {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .highlight-metric .metric-value {
            color: var(--gold);
        }

        .metric-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #777;
            font-weight: 500;
        }

        .case-study-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
        }

        .detail-column {
            padding: 3rem;
            border-bottom: 1px solid #e0ddd5;
        }

        .detail-column:first-child {
            border-right: 1px solid #e0ddd5;
        }

        .detail-column h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 1.2rem;
            letter-spacing: 0.3px;
        }

        .detail-column p {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
        }

        .case-study-scaling {
            padding: 3rem;
            border-bottom: 1px solid #e0ddd5;
        }

        .case-study-scaling h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 1.2rem;
            letter-spacing: 0.3px;
        }

        .case-study-scaling p {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
        }

        .case-study-scaling strong {
            color: var(--navy);
        }


        .case-study-client-story {
            padding: 3rem;
            border-bottom: 1px solid #e0ddd5;
        }

        .case-study-client-story blockquote {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-style: italic;
            color: var(--navy);
            border-left: 4px solid var(--gold);
            padding: 1.5rem 2rem;
            margin: 0 0 2rem 0;
            background: rgba(201, 163, 98, 0.05);
            line-height: 1.7;
        }

        .case-study-client-story p {
            font-size: 1.05rem;
            line-height: 1.9;
            color: #555;
            margin-bottom: 1rem;
        }

        .case-study-client-story p:last-child {
            margin-bottom: 0;
        }

        .case-study-services {
            padding: 3rem;
            border-bottom: 1px solid #e0ddd5;
        }

        .case-study-services h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
            letter-spacing: 0.3px;
        }

        .services-checklist {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem 3rem;
        }

        .checklist-column p {
            font-size: 1rem;
            line-height: 2;
            color: #555;
        }

        .case-study-cta {
            padding: 3rem;
            text-align: center;
            background: rgba(201, 163, 98, 0.05);
        }

        .case-study-cta p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            max-width: 700px;
            margin: 0 auto 2rem;
        }



        /* Newsletter Quick Bar */
        .newsletter-bar {
            background: var(--gold);
            padding: 1.5rem 4rem;
        }

        .newsletter-bar .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .newsletter-bar p {
            color: white;
            font-size: 0.95rem;
            margin: 0;
            white-space: nowrap;
        }

        .newsletter-bar-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-bar-form input {
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            border: none;
            border-radius: 2px;
            font-family: 'Inter', sans-serif;
            min-width: 250px;
        }

        .newsletter-bar-form input:focus {
            outline: 2px solid var(--navy);
        }

        .newsletter-bar-form .btn-primary {
            padding: 0.6rem 1.5rem;
            font-size: 0.8rem;
            background: var(--navy);
            white-space: nowrap;
        }

        .newsletter-bar-form .btn-primary:hover {
            background: #1a2744;
        }

        /* Footer Newsletter */
        .footer-newsletter {
            margin-top: 1rem;
        }

        .footer-newsletter h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .footer-newsletter p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 0.8rem;
        }

        .footer-newsletter-form {
            display: flex;
            gap: 0;
        }

        .footer-newsletter-form input {
            padding: 0.6rem 0.8rem;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 2px 0 0 2px;
            font-family: 'Inter', sans-serif;
            flex: 1;
        }

        .footer-newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-newsletter-form input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .footer-newsletter-form button {
            padding: 0.6rem 1rem;
            background: var(--gold);
            color: white;
            border: none;
            border-radius: 0 2px 2px 0;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .footer-newsletter-form button:hover {
            background: #b89354;
        }

        /* Newsletter & Industry News Section */
        .newsletter-section {
            background: white;
            padding: 8rem 4rem;
        }

        .newsletter-signup {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            background: var(--navy);
            border-radius: 2px;
            padding: 4rem;
            margin-bottom: 6rem;
        }

        .newsletter-signup-content .section-label {
            color: var(--light-gold);
        }

        .newsletter-signup-content .section-title {
            color: white;
            text-align: left;
        }

        .newsletter-signup-content p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .newsletter-signup-form form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .newsletter-signup-form input {
            padding: 1rem 1.2rem;
            font-size: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 2px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s;
        }

        .newsletter-signup-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-signup-form input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .newsletter-signup-form .btn-primary {
            width: 100%;
            text-align: center;
            padding: 1.1rem;
            font-size: 1rem;
            margin-top: 0.5rem;
        }

        .newsletter-disclaimer {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 0.8rem;
            text-align: center;
        }

        /* Industry News Feed */
        .industry-news {
            padding-top: 2rem;
        }

        .industry-news-intro {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .news-feed-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .news-feed-card {
            display: block;
            text-decoration: none;
            background: #f8f7f4;
            border: 1px solid #e8e5dd;
            border-radius: 2px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .news-feed-card:hover {
            transform: translateY(-3px);
            border-color: var(--gold);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }

        .news-source {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gold);
            font-weight: 600;
            display: block;
            margin-bottom: 0.8rem;
        }

        .news-feed-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            color: var(--navy);
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .news-feed-card p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: #666;
            margin-bottom: 1rem;
        }

        .news-date {
            font-size: 0.8rem;
            color: #999;
            font-weight: 500;
        }

        /* News & Insights Section */
        .news-section {
            background: var(--cream);
            padding: 8rem 4rem;
        }

        .news-section .section-label {
            color: var(--gold);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .news-card {
            background: white;
            padding: 2.5rem;
            border-radius: 2px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

        .news-date {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .news-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--navy);
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .news-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
        }

        .news-link {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .news-link:hover {
            color: var(--navy);
        }

        .contact-section {
            background: var(--cream);
            text-align: center;
        }

        /* Publications Section */
        .publications-section {
            background: var(--navy);
            color: white;
            padding: 8rem 4rem;
        }

        .publications-section .section-label {
            color: var(--light-gold);
        }

        .publications-section .section-title {
            color: white;
        }

        .publications-intro {
            max-width: 100%;
            margin: 0 auto 5rem;
            font-size: 1.25rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .publications-emotional {
            max-width: 900px;
            margin: 0 auto 4rem;
            padding: 3rem;
            background: rgba(0, 0, 0, 0.3);
            border-left: 4px solid var(--gold);
            border-radius: 2px;
        }

        .publications-emotional .emotional-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--gold);
            margin-bottom: 2rem;
        }

        .publications-emotional p {
            font-size: 1.15rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
        }

        .publications-emotional .emotional-closing {
            font-size: 1.3rem;
            color: var(--gold);
            margin-top: 2rem;
            margin-bottom: 0;
        }

        .report-featured {
            background: white;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }

        .report-content {
            padding: 4rem;
        }

        .report-header h3 {
            font-size: 2.5rem;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .report-subtitle {
            font-size: 1.3rem;
            color: var(--dark-gray);
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .report-meta {
            font-size: 0.95rem;
            color: var(--light-gray);
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }

        .report-stat-callout {
            background: linear-gradient(135deg, var(--navy) 0%, #2d5278 100%);
            padding: 2.5rem;
            margin: 3rem 0;
            border-left: 5px solid var(--gold);
            border-radius: 2px;
        }

        .report-stat-callout p {
            font-size: 1.4rem;
            line-height: 1.7;
            color: white;
            margin: 0;
        }

        .report-stat-callout strong {
            color: var(--gold);
            font-weight: 700;
        }

        .report-summary {
            margin: 3rem 0;
        }

        .report-summary h4 {
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .report-summary p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-gray);
        }

        .report-revelations {
            margin: 3rem 0;
        }

        .report-revelations h4 {
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
        }

        .report-revelations ul {
            list-style: none;
            padding-left: 0;
        }

        .report-revelations li {
            padding: 1rem 0;
            padding-left: 2.5rem;
            position: relative;
            color: var(--dark-gray);
            line-height: 1.7;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .report-revelations li:last-child {
            border-bottom: none;
        }

        .report-revelations li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
            font-size: 1.5rem;
        }

        .report-buttons {
            margin-top: 3rem;
            text-align: center;
        }

        .report-quote-large {
            background: var(--cream);
            padding: 4rem;
            text-align: center;
            border-top: 3px solid var(--gold);
        }

        .report-quote-large p {
            font-family: 'Inter', sans-serif;
            font-size: 1.8rem;
            font-style: normal;
            font-weight: 400;
            color: var(--navy);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .quote-source {
            font-size: 1rem;
            color: var(--light-gray);
            font-style: normal;
            letter-spacing: 1px;
        }

        .contact-intro {
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .contact-intro p {
            font-size: 1.25rem;
            line-height: 1.8;
            color: var(--dark-gray);
            margin-bottom: 2rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2.5rem;
            text-align: left;
            align-items: stretch;
        }

        .contact-grid > .contact-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        .contact-card {
            background: white;
            padding: 2.5rem;
            border-radius: 2px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
        }

        .contact-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--gold);
        }

        .contact-detail {
            margin-bottom: 1.5rem;
        }

        .contact-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gold);
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
        }

        .contact-detail p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--dark-gray);
            margin: 0;
        }

        .contact-detail a {
            color: var(--navy);
            text-decoration: none;
        }

        .contact-detail a:hover {
            color: var(--gold);
        }

        .contact-form-card {
            background: var(--navy);
        }

        .contact-form-card h3 {
            color: white;
            border-bottom-color: var(--gold);
        }

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            box-sizing: border-box;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
        }

        .contact-form .btn-primary {
            width: 100%;
            margin-top: 0.5rem;
        }

        /* Footer */
        footer {
            background: var(--navy);
            color: white;
            padding: 4rem 4rem 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 2fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            text-align: left;
        }

        .footer-brand h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 0.8rem;
        }

        .footer-tagline {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-style: italic;
        }

        .footer-offices {
            display: flex;
            gap: 2rem;
            justify-content: flex-start;
            width: 100%;
        }


        .footer-office strong {
            color: var(--gold);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-office p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            line-height: 1.5;
            margin: 0.3rem 0;
        }

        .footer-office a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }

        .footer-office a:hover {
            color: var(--gold);
        }

        .footer-email {
            text-align: right;
        }

        .footer-email a {
            color: var(--gold);
            text-decoration: none;
            font-size: 0.95rem;
        }

        .footer-email a:hover {
            color: var(--light-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
        }

        /* Responsive */
        /* Hamburger Menu Button */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background: var(--navy);
            transition: all 0.3s ease;
        }

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

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

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

        /* Tablet breakpoint */
        @media (max-width: 1024px) {
            .stats-grid,
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .leadership-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }

            .news-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            section {
                padding: 6rem 3rem;
            }

            .section-title {
                font-size: 2.8rem;
            }
        }

        /* Mobile breakpoint */
        @media (max-width: 768px) {

            /* Hamburger menu */
            .menu-toggle {
                display: flex;
            }

            nav .container {
                padding: 0 1.5rem;
            }

            nav ul {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                z-index: 1000;
                padding: 0;
            }

            nav ul.active {
                display: flex;
            }

            nav ul li a {
                font-size: 1.2rem;
            }

            /* Hero */
            .hero {
                height: 60vh;
                padding: 0 1.5rem;
            }

            .hero-brand {
                font-size: 2rem;
                letter-spacing: 0;
                margin-bottom: 0.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

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

            .btn-primary, .btn-secondary {
                text-align: center;
                width: 100%;
                box-sizing: border-box;
            }

            /* Sections */
            section {
                padding: 4rem 1.5rem;
            }

            .section-label {
                font-size: 0.75rem;
            }

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

            /* Grids */
            .stats-grid,
            .advantage-grid,
            .leadership-grid,
            .services-grid,
            .insights-grid,
            .news-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 3rem;
            }

            .advantage-number {
                font-size: 3rem;
            }

            /* Leadership bios */
            .bio-photo {
                height: 250px;
            }

            /* Publications */
            .publications-section {
                padding: 4rem 1.5rem;
            }

            .publications-intro {
                font-size: 1rem;
            }

            .publications-emotional {
                padding: 2rem;
                margin: 0 0 3rem;
            }

            .publications-emotional .emotional-title {
                font-size: 1.6rem;
            }

            .publications-emotional p {
                font-size: 1rem;
            }

            .publications-emotional .emotional-closing {
                font-size: 1.1rem;
            }

            .report-content {
                padding: 1.5rem;
            }

            .report-header h3 {
                font-size: 1.6rem;
            }

            .report-subtitle {
                font-size: 1rem;
            }

            .report-stat-callout p {
                font-size: 1.1rem;
            }

            .report-quote-large {
                padding: 1.5rem;
            }

            .report-quote-large p {
                font-size: 1.1rem;
            }

            /* News */
            .news-section {
                padding: 4rem 1.5rem;
            }

            .news-card {
                padding: 2rem;
            }

            /* Contact */
            .contact-section {
                padding: 4rem 1.5rem;
            }

            .contact-card {
                padding: 2rem;
            }

            .contact-intro p {
                font-size: 1.05rem;
            }

            /* Footer */
            footer {
                padding: 3rem 1.5rem 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .footer-offices {
                flex-direction: column;
                align-items: center;
            }

            .footer-email {
                text-align: center;
            }
        }

        /* Small phone breakpoint */
        @media (max-width: 400px) {
            .hero-brand {
                font-size: 1.6rem;
            }

            .hero h1 {
                font-size: 1.6rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }
/* ========================================
   INVESTMENT OPPORTUNITY SECTION
   ======================================== */
.invest-section {
    padding: 80px 0;
}

.invest-section .section-label {
    color: #C9A84C;
}

.invest-section .section-title {
    color: #ffffff;
}

.invest-intro {
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Diaspora Invitation Box */
.invest-diaspora-box {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.04) 100%);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-left: 4px solid #C9A84C;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 60px;
}

.invest-diaspora-box h3 {
    font-family: 'Playfair Display', serif;
    color: #C9A84C;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.invest-diaspora-box p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Model Header */
.invest-model-header {
    margin-bottom: 40px;
}

.invest-model-header h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.invest-subtitle {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 100%;
}

/* Metrics Grid */
.invest-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.invest-metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.invest-metric-highlight {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
}

.invest-metric-value {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.invest-metric-highlight .invest-metric-value {
    color: #C9A84C;
}

.invest-metric-label {
    color: #d0d8e8;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bar Chart */
.invest-chart-section {
    margin-bottom: 70px;
}

.invest-chart-section h3,
.invest-split-section h3,
.invest-scaling-section h3,
.invest-included-section h3,
.invest-cta-section h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.invest-bar-chart {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
}

.bar-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-label {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    min-width: 90px;
    text-align: right;
}

.bar-track {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    height: 44px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    transition: width 1.5s ease-out;
}

.bar-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.bar-year1 { background: linear-gradient(90deg, #C9A84C, #d4b860); }
.bar-year2 { background: linear-gradient(90deg, #C9A84C, #d4b860); }
.bar-year3 { background: linear-gradient(90deg, #C9A84C, #d4b860); }

.bar-group-total {
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bar-total {
    background: linear-gradient(90deg, #2c4a2e, #3d6b40);
}

.chart-footnote {
    color: #b0b8c8;
    font-size: 0.85rem;
    margin-top: 15px;
    font-style: italic;
}

/* Pie Chart & Split */
.invest-split-section {
    margin-bottom: 70px;
}

.invest-split-intro {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.pie-chart-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.pie-chart {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
}

.pie-chart svg {
    width: 100%;
    height: 100%;
}

.pie-legend {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pie-legend-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pie-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
}

.pie-legend-item strong {
    color: #ffffff;
    font-size: 1rem;
    display: block;
    margin-bottom: 2px;
}

.pie-legend-item p {
    color: #d0d8e8;
    font-size: 0.9rem;
    margin: 0;
}

/* Scaling Table */
.invest-scaling-section {
    margin-bottom: 70px;
}

.invest-scaling-section > p {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.invest-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.invest-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.invest-table thead {
    background: rgba(201, 168, 76, 0.1);
}

.invest-table th {
    color: #C9A84C;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.invest-table td {
    color: #ffffff;
    font-size: 1rem;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.invest-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.invest-table-highlight {
    background: rgba(201, 168, 76, 0.06);
}

.invest-table-highlight td {
    color: #ffffff;
    font-weight: 500;
}

/* What's Included */
.invest-included-section {
    margin-bottom: 70px;
}

.invest-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.invest-included-item {
    color: #b0b8c8;
    font-size: 1rem;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.5;
}

/* CTA */
.invest-cta-section {
    text-align: center;
    padding: 50px 0;
    margin-bottom: 30px;
}

.invest-cta-section p {
    color: #ffffff;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.invest-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #C9A84C, #b8953f);
    color: #0a1628;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.invest-cta-button:hover {
    background: linear-gradient(135deg, #d4b860, #C9A84C);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.3);
}

/* Disclaimer */
.invest-disclaimer {
    color: #8a94a8;
    font-size: 0.8rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
    font-style: italic;
}

/* ========================================
   INVEST SECTION RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .invest-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pie-chart-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .invest-included-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .invest-section {
        padding: 80px 0;
    }
    .invest-metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .invest-metric {
        padding: 20px 12px;
    }
    .invest-metric-value {
        font-size: 1.5rem;
    }
    .invest-diaspora-box {
        padding: 25px;
    }
    .invest-diaspora-box h3 {
        font-size: 1.3rem;
    }
    .bar-label {
        min-width: 70px;
        font-size: 0.85rem;
    }
    .bar-value {
        font-size: 0.8rem;
    }
    .invest-table th,
    .invest-table td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    .invest-cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* ========================================
   INVEST SECTION — ADDITIONAL STYLES
   ======================================== */

/* Personal Story */
.invest-personal-story {
    margin-bottom: 50px;
}

.invest-personal-story p {
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.invest-personal-story p:last-child {
    margin-bottom: 0;
}

/* Africa-specific box variation */
.invest-africa-box {
    border-left-color: #2c4a2e;
    background: linear-gradient(135deg, rgba(44, 74, 46, 0.12) 0%, rgba(44, 74, 46, 0.04) 100%);
    border-color: rgba(44, 74, 46, 0.3);
    border-left-color: #3d6b40;
    margin-bottom: 70px;
}

.invest-africa-box h3 {
    color: #5cb85c;
}

/* Real Life Box */
.invest-reality-box {
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 45px;
    margin-bottom: 70px;
}

.invest-reality-box h3 {
    font-family: 'Playfair Display', serif;
    color: #C9A84C;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.invest-reality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.invest-reality-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(10, 22, 40, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.invest-reality-amount {
    display: block;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.invest-reality-desc {
    color: #d0d8e8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.invest-reality-note {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    font-weight: 500;
    margin: 0;
}

/* Verification Section */
.invest-verification-section {
    margin-bottom: 70px;
}

.invest-verification-section h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.invest-verification-section > p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.invest-verification-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
    margin-top: 30px;
}

.invest-verification-box h4 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.invest-verification-box > p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.invest-verification-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.invest-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.invest-step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #C9A84C;
    color: #0a1628;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 2px;
}

.invest-step strong {
    color: #ffffff;
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.invest-step p {
    color: #d0d8e8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.invest-verification-note {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

/* Responsive additions */
@media (max-width: 900px) {
    .invest-reality-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .invest-personal-story p {
        font-size: 1.05rem;
    }
    .invest-reality-box {
        padding: 25px;
    }
    .invest-reality-amount {
        font-size: 1.5rem;
    }
    .invest-verification-box {
        padding: 25px;
    }
}

/* ========================================
   INVEST — RECONNECTION & VISIT STYLES
   ======================================== */

/* Why Box variation */
.invest-why-box {
    border-left-color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.12);
    border-left-color: #ffffff;
    margin-bottom: 40px;
}

.invest-why-box h3 {
    color: #ffffff;
}

/* Reconnection Section */
.invest-reconnection-section {
    margin-bottom: 70px;
}

.invest-reconnection-section h3 {
    font-family: 'Playfair Display', serif;
    color: #C9A84C;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.invest-reconnection-section > p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

/* Visit Box */
.invest-visit-box {
    background: linear-gradient(135deg, rgba(44, 74, 46, 0.1) 0%, rgba(44, 74, 46, 0.03) 100%);
    border: 1px solid rgba(44, 74, 46, 0.25);
    border-radius: 12px;
    padding: 40px;
    margin-top: 30px;
}

.invest-visit-box h4 {
    font-family: 'Playfair Display', serif;
    color: #5cb85c;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.invest-visit-box > p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.invest-visit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.invest-visit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(10, 22, 40, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.invest-visit-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.invest-visit-item p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.invest-visit-item strong {
    color: #ffffff;
}

.invest-visit-note {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}

@media (max-width: 600px) {
    .invest-visit-grid {
        grid-template-columns: 1fr;
    }
    .invest-visit-box {
        padding: 25px;
    }
}

/* ========================================
   INVEST — WHY MALAWI SECTION
   ======================================== */
.invest-malawi-section {
    margin-bottom: 70px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(44, 74, 46, 0.08) 0%, rgba(201, 168, 76, 0.04) 100%);
    border: 1px solid rgba(44, 74, 46, 0.2);
    border-radius: 12px;
}

.invest-malawi-section h3 {
    font-family: 'Playfair Display', serif;
    color: #C9A84C;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.invest-malawi-section p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.invest-malawi-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .invest-malawi-section {
        padding: 30px;
    }
}

/* ========================================
   INVEST — WHY MALAWI SECTION
   ======================================== */
.invest-malawi-section {
    margin-bottom: 70px;
}

.invest-malawi-section h3 {
    font-family: 'Playfair Display', serif;
    color: #C9A84C;
    font-size: 2rem;
    margin-bottom: 25px;
}

/* ========================================
   INVEST SECTION — ALTERNATING BACKGROUNDS
   ======================================== */
.invest-dark {
    background: linear-gradient(180deg, #0a1628 0%, #0d1f35 50%, #0a1628 100%);
}

.invest-light {
    background: var(--cream);
}

/* Light section overrides — dark text on cream */
.invest-light .invest-model-header h3,
.invest-light .invest-chart-section h3,
.invest-light .invest-split-section h3,
.invest-light .invest-scaling-section h3,
.invest-light .invest-reality-box h3 {
    color: var(--navy);
}

.invest-light .invest-subtitle,
.invest-light .invest-scaling-section > p,
.invest-light .invest-split-intro {
    color: var(--dark-gray);
}

.invest-light .invest-metric {
    background: rgba(30, 58, 95, 0.06);
    border-color: rgba(30, 58, 95, 0.12);
}

.invest-light .invest-metric-value {
    color: var(--navy);
}

.invest-light .invest-metric-highlight {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.3);
}

.invest-light .invest-metric-highlight .invest-metric-value {
    color: #b8953f;
}

.invest-light .invest-metric-label {
    color: var(--light-gray);
}

/* Reality box on light */
.invest-light .invest-reality-box {
    background: rgba(30, 58, 95, 0.06);
    border-color: rgba(30, 58, 95, 0.15);
}

.invest-light .invest-reality-item {
    background: white;
    border-color: rgba(30, 58, 95, 0.1);
}

.invest-light .invest-reality-amount {
    color: var(--navy);
}

.invest-light .invest-reality-desc {
    color: var(--light-gray);
}

.invest-light .invest-reality-note {
    color: var(--dark-gray);
}

/* Bar chart on light */
.invest-light .bar-label {
    color: var(--dark-gray);
}

.invest-light .bar-track {
    background: rgba(30, 58, 95, 0.08);
}

.invest-light .chart-footnote {
    color: var(--light-gray);
}

/* Pie chart on light */
.invest-light .pie-legend-item strong {
    color: var(--navy);
}

.invest-light .pie-legend-item p {
    color: var(--light-gray);
}

/* Table on light */
.invest-light .invest-table-wrapper {
    border-color: rgba(30, 58, 95, 0.12);
}

.invest-light .invest-table thead {
    background: rgba(30, 58, 95, 0.06);
}

.invest-light .invest-table th {
    color: var(--navy);
    border-bottom-color: rgba(30, 58, 95, 0.15);
}

.invest-light .invest-table td {
    color: var(--dark-gray);
    border-bottom-color: rgba(30, 58, 95, 0.06);
}

.invest-light .invest-table tbody tr:hover {
    background: rgba(30, 58, 95, 0.03);
}

.invest-light .invest-table-highlight {
    background: rgba(201, 168, 76, 0.08);
}

.invest-light .invest-table-highlight td {
    color: var(--navy);
}

/* Why Malawi on light background */
.invest-light .invest-malawi-section h3 {
    color: var(--navy);
}

.invest-light .invest-malawi-section p {
    color: var(--dark-gray);
}

/* Light section overrides for diaspora content */
.invest-light .invest-diaspora-box p {
    color: #2c3e50;
}

.invest-light .invest-diaspora-box h3 {
    color: var(--navy);
}

.invest-light .invest-personal-story p {
    color: #2c3e50;
}

.invest-light .invest-personal-story p strong {
    color: var(--navy);
}

.invest-light .invest-diaspora-box {
    background: rgba(30, 58, 95, 0.06);
    border-color: rgba(30, 58, 95, 0.15);
    border-left-color: var(--navy);
}

.invest-light .invest-verification-section h3 {
    color: var(--navy);
}

.invest-light .invest-verification-section p {
    color: #2c3e50;
}

.invest-light .invest-step strong {
    color: var(--navy);
}

.invest-light .invest-step p {
    color: #2c3e50;
}

.invest-light .invest-cta-section h3 {
    color: var(--navy);
}

.invest-light .invest-cta-section p {
    color: #2c3e50;
}

.invest-light .invest-disclaimer {
    color: #667;
}

.invest-light .section-label {
    color: var(--navy);
}

.invest-light .section-title {
    color: var(--navy);
}

/* ========================================
   HEKA COMMUNITY FUND STYLES
   ======================================== */
.invest-community-section {
    margin-bottom: 70px;
}

.invest-community-section > h3 {
    font-family: 'Playfair Display', serif;
    color: #C9A84C;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.invest-community-section > p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

/* Split Box */
.invest-community-split-box {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 40px;
    margin: 35px 0;
}

.invest-community-split-box h4 {
    font-family: 'Playfair Display', serif;
    color: #C9A84C;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.invest-community-split-box > p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.invest-community-split {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.invest-community-split-item {
    flex: 1;
    background: rgba(10, 22, 40, 0.4);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.invest-community-pct {
    display: block;
    font-family: 'Playfair Display', serif;
    color: #C9A84C;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.invest-community-from {
    color: #d0d8e8;
    font-size: 0.95rem;
}

.invest-community-note {
    color: #d0d8e8;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* Projects */
.invest-community-projects {
    margin: 40px 0;
}

.invest-community-projects h4 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.invest-community-projects > p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.invest-community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.invest-community-item {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

.invest-community-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.invest-community-item strong {
    color: #ffffff;
    display: block;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.invest-community-item p {
    color: #d0d8e8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Transparency */
.invest-community-transparency {
    margin-top: 40px;
}

.invest-community-transparency h4 {
    font-family: 'Playfair Display', serif;
    color: #C9A84C;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.invest-community-transparency > p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.invest-transparency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.invest-transparency-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

.invest-transparency-item strong {
    color: #ffffff;
    display: block;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.invest-transparency-item p {
    color: #d0d8e8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.invest-transparency-note {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

/* Light section overrides for community content */
.invest-light .invest-community-split-box > p {
    color: #2c3e50;
}

.invest-light .invest-community-split-box h3 {
    color: var(--navy);
}

.invest-light .invest-community-split-box h4 {
    color: var(--navy);
}

.invest-light .invest-community-split-item {
    background: rgba(30, 58, 95, 0.08);
    border-color: rgba(30, 58, 95, 0.15);
}

.invest-light .invest-community-pct {
    color: var(--navy);
}

.invest-light .invest-community-from {
    color: #2c3e50;
}

.invest-light .invest-community-note {
    color: #4a5568;
}

.invest-light .invest-community-transparency > p {
    color: #2c3e50;
}

.invest-light .invest-community-transparency h3 {
    color: var(--navy);
}

.invest-light .invest-community-transparency h4 {
    color: var(--navy);
}

.invest-light .invest-transparency-item {
    background: rgba(30, 58, 95, 0.06);
    border-color: rgba(30, 58, 95, 0.12);
}

.invest-light .invest-transparency-item strong {
    color: var(--navy);
}

.invest-light .invest-transparency-item p {
    color: #2c3e50;
}

.invest-light .invest-transparency-note {
    color: #4a5568;
}

/* Community Fund Responsive */
@media (max-width: 900px) {
    .invest-community-grid {
        grid-template-columns: 1fr;
    }
    .invest-transparency-grid {
        grid-template-columns: 1fr;
    }
    .invest-community-split {
        flex-direction: column;
    }
    .healthcare-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 600px) {
    .invest-community-split-box {
        padding: 25px;
    }
    .invest-community-pct {
        font-size: 1.8rem;
    }
}

/* ========================================
   MOBILE RESPONSIVE v2 - COMPLETE REBUILD
   ======================================== */

/* ---- HAMBURGER MENU VISIBLE ON ALL BACKGROUNDS ---- */
.menu-toggle span {
    background: #ffffff !important;
}
.menu-toggle.active span {
    background: var(--navy) !important;
}

/* ========== MOBILE: 768px and below ========== */
@media (max-width: 768px) {

    /* ---- NAV FIX ---- */
    nav .container {
        padding: 0 1rem !important;
    }

    nav .logo, nav .logo a {
        font-size: 1.3rem !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    nav ul {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: white !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1.5rem !important;
        z-index: 1000 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    nav ul.active {
        display: flex !important;
    }

    nav ul li {
        list-style: none !important;
    }

    nav ul li a {
        color: var(--navy) !important;
        font-size: 1.1rem !important;
    }

    nav ul li a:hover {
        color: var(--gold) !important;
    }

    .cta-button {
        border-color: var(--navy) !important;
        color: var(--navy) !important;
    }

    /* Hide call button and label on mobile */
    .call-btn-wrapper {
        display: none !important;
    }
    .call-button-nav,
    .call-button-label,
    .call-btn-label {
        display: none !important;
    }

    /* ---- HIDE TICKER ON MOBILE ---- */
    .city-ticker {
        display: none !important;
    }

    /* ---- HERO SECTION ---- */
    .hero {
        height: auto !important;
        min-height: auto !important;
        padding: 90px 1.2rem 2.5rem !important;
        overflow: visible !important;
    }

    .hero::before {
        display: none !important;
    }

    .hero-content {
        padding: 0 !important;
    }

    .hero-brand {
        font-size: 1.4rem !important;
        letter-spacing: 0 !important;
        margin-bottom: 0.5rem !important;
    }

    .hero h1 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }

    .hero p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }

    .btn-primary, .btn-secondary {
        text-align: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }

    /* ---- GENERAL SECTIONS ---- */
    section {
        padding: 2.5rem 1.2rem !important;
    }

    .container {
        padding: 0 1.2rem !important;
    }

    .section-label {
        font-size: 0.65rem !important;
        letter-spacing: 2px !important;
    }

    .section-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }

    /* ---- FORCE ALL GRIDS TO SINGLE COLUMN ---- */
    .stats-grid,
    .advantage-grid,
    .leadership-grid,
    .services-grid,
    .insights-grid,
    .news-grid,
    .contact-grid,
    .invest-metrics-grid,
    .invest-included-grid,
    .invest-transparency-grid,
    .invest-community-grid,
    .healthcare-cards-grid,
    .engagement-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* ---- FORCE ALL FLEX ROWS TO STACK ---- */
    .invest-charts-row,
    .invest-community-split,
    .pie-chart-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    .invest-charts-row > div,
    .invest-community-split > div {
        width: 100% !important;
        min-width: unset !important;
        flex: none !important;
    }

    /* ---- INVEST PAGE ---- */
    .invest-section {
        padding: 2.5rem 0 !important;
    }

    .invest-section .container {
        padding: 0 1.2rem !important;
    }

    /* Gold CTA box - force stack */
    .invest-section .container > div[style*="display: flex"][style*="space-between"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    /* Gold box sizing */
    .invest-section .container > div[style*="display: flex"] > a {
        width: 100% !important;
    }

    .invest-section .container > div[style*="display: flex"] > a > div {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .invest-model-header h3 {
        font-size: 1.2rem !important;
    }

    .invest-subtitle {
        font-size: 0.85rem !important;
    }

    .invest-metric {
        padding: 15px 10px !important;
    }

    .invest-metric-value {
        font-size: 1.2rem !important;
    }

    .invest-metric-label {
        font-size: 0.65rem !important;
    }

    .invest-personal-story p {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }

    .invest-diaspora-box {
        padding: 15px !important;
    }

    .invest-diaspora-box h3 {
        font-size: 1.1rem !important;
    }

    .invest-diaspora-box p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    /* Bar chart fixes */
    .bar-label {
        min-width: 50px !important;
        font-size: 0.7rem !important;
    }

    .bar-value {
        font-size: 0.65rem !important;
    }

    /* Chart section - remove min-width */
    .invest-chart-section,
    .invest-split-section {
        min-width: unset !important;
        width: 100% !important;
        flex: none !important;
    }

    /* Table fix */
    .invest-table {
        font-size: 0.75rem !important;
    }

    .invest-table th,
    .invest-table td {
        padding: 8px 6px !important;
        font-size: 0.7rem !important;
    }

    /* Verification steps */
    .invest-step {
        flex-direction: column !important;
        text-align: center !important;
    }

    .invest-step-number {
        margin-bottom: 8px !important;
    }

    .invest-cta-button {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }

    .invest-why-box,
    .invest-inclusivity {
        padding: 15px !important;
    }

    .invest-why-box p,
    .invest-inclusivity p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    /* ---- COMMUNITY PAGE ---- */
    .invest-community-item {
        flex-direction: column !important;
        text-align: center !important;
        padding: 15px !important;
    }

    .invest-community-icon {
        margin-bottom: 8px !important;
    }

    .invest-community-split-box {
        min-width: unset !important;
        width: 100% !important;
    }

    /* Healthcare featured section */
    .healthcare-cards-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* ---- LEADERSHIP PAGE ---- */
    .leader-card {
        flex-direction: column !important;
    }

    .leader-photo {
        width: 100% !important;
        height: 200px !important;
        min-width: unset !important;
        min-height: unset !important;
    }

    .leader-content {
        padding: 1.2rem !important;
    }

    .leader-content h3 {
        font-size: 1.2rem !important;
    }

    .leader-content p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    /* CEO circle placeholder - scale down */
    .leader-photo div[style*="220px"] {
        width: 150px !important;
        height: 150px !important;
    }

    .leader-photo div[style*="200px"] {
        width: 130px !important;
        height: 130px !important;
    }

    /* Bio toggle */
    .bio-photo {
        height: 200px !important;
    }

    /* ---- SERVICES PAGE ---- */
    .service-card {
        padding: 1.5rem !important;
    }

    .service-card h3 {
        font-size: 1.1rem !important;
    }

    .service-card p {
        font-size: 0.85rem !important;
    }

    /* ---- TRAINING PAGE ---- */
    .training-card,
    .service-card {
        padding: 1.2rem !important;
    }

    /* ---- PROJECTS PAGE ---- */
    .engagement-card {
        padding: 1.2rem !important;
    }

    .engagement-card h3 {
        font-size: 1.1rem !important;
    }

    .engagement-card p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    /* ---- PUBLICATIONS PAGE ---- */
    .publications-section {
        padding: 2.5rem 1.2rem !important;
    }

    .publications-emotional {
        padding: 1.2rem !important;
        margin: 0 0 2rem !important;
    }

    .publications-emotional .emotional-title {
        font-size: 1.2rem !important;
    }

    .publications-emotional p {
        font-size: 0.85rem !important;
    }

    .report-content {
        padding: 1.2rem !important;
    }

    .report-header h3 {
        font-size: 1.2rem !important;
    }

    .report-quote-large {
        padding: 1rem !important;
    }

    .report-quote-large p {
        font-size: 0.9rem !important;
    }

    /* ---- CONTACT PAGE ---- */
    .contact-section {
        padding: 2.5rem 1.2rem !important;
    }

    .contact-card {
        padding: 1.2rem !important;
    }

    .contact-card h3 {
        font-size: 1.1rem !important;
    }

    .contact-intro p {
        font-size: 0.9rem !important;
    }

    /* Contact form */
    .contact-form input,
    .contact-form textarea {
        width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important; /* Prevents iOS zoom on focus */
    }

    /* ---- STATS ---- */
    .stat-number {
        font-size: 2.2rem !important;
    }

    .stat-label {
        font-size: 0.8rem !important;
    }

    .advantage-number {
        font-size: 2.2rem !important;
    }

    /* ---- NEWS SECTION ---- */
    .news-section {
        padding: 2.5rem 1.2rem !important;
    }

    .news-card {
        padding: 1.2rem !important;
    }

    /* ---- NEWSLETTER FORM ---- */
    .newsletter-form {
        flex-direction: column !important;
    }

    .newsletter-form input {
        width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
    }

    .newsletter-form button {
        width: 100% !important;
    }

    /* ---- FOOTER ---- */
    footer {
        padding: 2rem 1.2rem 1rem !important;
    }

    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }

    .footer-offices {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }

    .footer-office {
        text-align: center !important;
    }

    .footer-email {
        text-align: center !important;
    }

    .footer-bottom {
        font-size: 0.75rem !important;
    }

    /* ---- ENGAGEMENTS SECTION ---- */
    .engagements-intro p {
        font-size: 0.9rem !important;
    }

    /* ---- HOME PAGE NEWSLETTER BAR ---- */
    .newsletter-bar {
        padding: 1rem 1.2rem !important;
    }

    .newsletter-bar .container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.8rem !important;
    }

    .newsletter-bar p {
        white-space: normal !important;
        font-size: 0.85rem !important;
    }

    .newsletter-bar-form {
        flex-direction: column !important;
        width: 100% !important;
    }

    .newsletter-bar-form input {
        width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
    }

    .newsletter-bar-form button {
        width: 100% !important;
    }

    /* ---- PROJECTS PAGE - CASE STUDY ---- */
    .case-study-metrics {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .case-study-details {
        grid-template-columns: 1fr !important;
    }

    .detail-column {
        padding: 1.5rem !important;
        border-right: none !important;
    }

    .detail-column h4 {
        font-size: 1.2rem !important;
    }

    .detail-column p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    .metric-card {
        padding: 1.5rem 1rem !important;
    }

    .metric-value {
        font-size: 1.5rem !important;
    }

    .metric-label {
        font-size: 0.7rem !important;
    }

    .case-study-scaling {
        padding: 1.5rem !important;
    }

    .case-study-scaling h4 {
        font-size: 1.2rem !important;
    }

    .case-study-scaling p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    .case-study-featured {
        overflow: hidden !important;
    }

    .case-study-client-story {
        padding: 1.5rem !important;
    }

    .case-study-client-story blockquote {
        font-size: 0.9rem !important;
        padding: 0 !important;
    }

    /* ---- PUBLICATIONS PAGE - NEWSLETTER SIGNUP ---- */
    .newsletter-signup {
        grid-template-columns: 1fr !important;
        padding: 1.5rem !important;
        gap: 1.5rem !important;
        margin-bottom: 2rem !important;
    }

    .newsletter-signup-content .section-title {
        font-size: 1.3rem !important;
    }

    .newsletter-signup-content p {
        font-size: 0.85rem !important;
    }

    .newsletter-signup-form form {
        gap: 0.8rem !important;
    }

    .newsletter-signup-form input {
        font-size: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .newsletter-signup-form button {
        width: 100% !important;
    }

    .newsletter-disclaimer {
        font-size: 0.75rem !important;
    }

    /* ---- PUBLICATIONS PAGE - NEWS FEED GRID ---- */
    .news-feed-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .newsletter-section {
        padding: 2.5rem 1.2rem !important;
    }

    /* ---- PROJECTS PAGE - COMPARISON TABLE ---- */
    .comparison-table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        max-width: 100% !important;
        font-size: 0.75rem !important;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.5rem !important;
        font-size: 0.7rem !important;
        min-width: 70px !important;
    }

    .comparison-table th {
        font-size: 0.7rem !important;
    }

    /* ---- PREVENT ANY HORIZONTAL OVERFLOW ---- */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Allow table to scroll beyond viewport */
    .comparison-table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table th,
    .comparison-table td,
    .invest-table,
    .invest-table thead,
    .invest-table tbody,
    .invest-table tr,
    .invest-table th,
    .invest-table td {
        max-width: none !important;
    }

    img, video, iframe, table {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* ========== SMALL PHONE: 400px and below ========== */
@media (max-width: 400px) {
    .hero-brand {
        font-size: 1.2rem !important;
    }

    .hero h1 {
        font-size: 1.2rem !important;
    }

    .section-title {
        font-size: 1.3rem !important;
    }

    .invest-metric-value {
        font-size: 1rem !important;
    }

    .stat-number {
        font-size: 1.8rem !important;
    }

    nav .logo, nav .logo a {
        font-size: 1.1rem !important;
    }

    .invest-table th,
    .invest-table td {
        padding: 6px 4px !important;
        font-size: 0.6rem !important;
    }
}

/* ========== TABLET: 769px - 1024px ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        height: auto !important;
        min-height: 50vh;
        padding: 100px 2rem 3rem !important;
    }

    .hero h1 {
        font-size: 2rem !important;
    }

    .hero-content {
        padding: 0 1rem !important;
    }

    section {
        padding: 3.5rem 2rem !important;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .container {
        padding: 0 2rem !important;
    }

    .stats-grid,
    .services-grid,
    .invest-metrics-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .leadership-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .healthcare-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .invest-charts-row {
        flex-direction: column !important;
    }

    .invest-charts-row > div {
        width: 100% !important;
        min-width: unset !important;
    }

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

    .footer-offices {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

/* ========== STANDARD LAPTOP: 1025px - 1366px ========== */
@media (min-width: 1025px) and (max-width: 1366px) {
    .hero {
        height: auto !important;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 2.5rem !important;
    }

    .section-title {
        font-size: 2.5rem !important;
    }

    section {
        padding: 4rem 3rem !important;
    }

    .hero-content {
        padding: 0 2rem !important;
    }
}
