
        /* --- CARDS (History & Vision) --- */
        .vision-history-section {
            padding: 120px 0;
            background-color: #fff;
        }
        .vh-card {
            padding: 40px;
            background: #f9f9f9;
            border-radius: 20px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid var(--Freshflow-base); /* Fallback orange */
        }
        .vh-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
        .vh-icon {
            font-size: 50px;
            color: var(--thm-primary, #00A9FF);
            margin-bottom: 20px;
        }

        /* --- FOUNDER SECTION --- */
        .founder-section {
            padding: 120px 0;
            background-color: #f4f5f8;
        }
        .founder-img-box {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            line-height: 0; /* Removes bottom gap */
        }
        .founder-img-box img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .founder-img-box:hover img {
            transform: scale(1.05);
        }
        .founder-role {
            color: var(--thm-primary, #00A9FF);
            font-family: 'Bricolage Grotesque', sans-serif;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 25px;
            display: block;
        }
        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .value-item {
            background: #fff;
            padding: 20px;
            text-align: left !important;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .value-item i {
            font-size: 24px;
            color: var(--thm-primary, #00A9FF);
            margin-bottom: 10px;
            display: block;
        }


        /* --- CTA --- */
        .cta-section {
            padding: 100px 0;
            background-color: var(--thm-primary, #00A9FF);
            text-align: center;
        }
        .cta-btn-white {
            background-color: #fff;
            color: var(--thm-primary, #00A9FF);
            padding: 15px 40px;
            font-weight: bold;
            border-radius: 50px;
            display: inline-block;
            transition: all 0.3s ease;
            margin-top: 30px;
        }
        .cta-btn-white:hover {
            background-color: #000;
            color: #fff;
        }


        /* --- SECTION BACKGROUND --- */
        .global-reach-section {
            padding: 100px 0;
            background-color: var(--Freshflow-base) !important;
            color: #fff;
        }

        /* --- IMAGE CONTAINER (The Frame) --- */
        .map-image-viewport {
            position: relative;
            width: 100%;
            max-width: 100%;
        }

        /* --- THE IMAGE ITSELF --- */
        .map-image-viewport img {
            width: 100%;
        }
