        /* Base Variables & Theme */
        :root {
            --primary-color: #14b18e; 
            --primary-dark: #0f8b6f;
            --dark-bg: #2c3e50; 
            --darker-bg: #1a252f;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f4f7f6;
            --border-color: #e2e8f0;
        }
        body { font-family: Arial, Helvetica, sans-serif; margin: 0; padding: 0; color: var(--text-dark); line-height: 1.6; background-color: #ffffff; }
        a { text-decoration: none; color: var(--primary-color); transition: 0.3s; }
        a:hover { color: var(--primary-dark); }
        img { max-width: 100%; height: auto; display: block; }
        
        .container { width: 90%; max-width: 1200px; margin: 0 auto; }
        .section-padding { padding: 80px 0; }
        .bg-light { background-color: var(--bg-light); }

        /* Typography & Titles */
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 { font-size: 32px; color: var(--dark-bg); margin-bottom: 15px; font-weight: 700; position: relative; padding-bottom: 15px; }
        .section-header h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: var(--primary-color); }
        .section-header p { color: var(--text-light); font-size: 16px; max-width: 800px; margin: 0 auto; line-height: 1.8; }

        /* Buttons */
        .btn { display: inline-block; padding: 12px 28px; background-color: var(--primary-color); color: #fff; font-weight: bold; border-radius: 4px; border: 2px solid var(--primary-color); cursor: pointer; transition: 0.3s; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px;}
        .btn:hover { background-color: transparent; color: var(--primary-color); }

        /* Header Navigation */
        .header { background: #fff; padding: 15px 0; box-shadow: 0 2px 15px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 1000; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 32px; font-weight: 900; color: var(--dark-bg); letter-spacing: -1px;}
        .logo span { color: var(--primary-color); }
        .main-menu { display: flex; gap: 28px; align-items: center; }
        .main-menu a { color: #333; font-size: 13px; font-weight: 700; text-transform: uppercase; }
        .main-menu a:hover, .main-menu a.active { color: var(--primary-color); }
        .main-menu a.active { border-bottom: 2px solid var(--primary-color); padding-bottom: 5px;}
        .nav-actions { display: flex; gap: 15px; align-items: center; }

        /* --- SECTION 1: Hero --- */
        .about-hero { 
            background: linear-gradient(to right, rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.7)), url('/static/images/photo-1497366216548-37526070297c.jpg') no-repeat center center/cover; 
            padding: 100px 0; color: #fff; text-align: center; 
        }
        .about-hero h1 { font-size: 44px; margin: 0 0 20px 0; font-weight: 800; letter-spacing: -1px; text-transform: uppercase;}
        .about-hero h1 span { color: var(--primary-color); }
        .hero-desc { font-size: 18px; color: #cbd5e1; max-width: 800px; margin: 0 auto; line-height: 1.8; }

        /* --- SECTION 2: Startup Story & Team --- */
        .story-layout { display: flex; gap: 60px; align-items: center; }
        .story-text { flex: 1.2; }
        .story-text h3 { font-size: 30px; color: var(--dark-bg); margin-bottom: 20px; line-height: 1.3;}
        .story-text p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px;}
        .story-text p strong { color: var(--dark-bg); }
        
        .story-image { flex: 1; border-radius: 8px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.08); position: relative;}
        .story-image img { width: 100%; height: auto; object-fit: cover; display: block; }
        
        /* Startup highlights inside image */
        .story-badge { position: absolute; bottom: 20px; left: -20px; background: var(--dark-bg); color: #fff; padding: 20px 30px; border-radius: 6px; border-left: 5px solid var(--primary-color); box-shadow: 0 10px 20px rgba(0,0,0,0.15);}
        .story-badge h4 { margin: 0 0 5px 0; font-size: 24px; color: var(--primary-color);}
        .story-badge span { font-size: 13px; text-transform: uppercase; font-weight: bold; letter-spacing: 1px;}

        /* --- SECTION 3: Vision, Mission, CSR (Vertical Layout) --- */
        .vms-section { background: var(--bg-light); padding: 80px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);}
        
        .vms-row { display: flex; align-items: center; gap: 60px; margin-bottom: 80px; }
        .vms-row:last-child { margin-bottom: 0; }
        .vms-row.reverse { flex-direction: row-reverse; }
        
        .vms-img { flex: 1; border-radius: 8px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.08); position: relative;}
        .vms-img img { width: 100%; height: 350px; object-fit: cover; transition: transform 0.5s; }
        .vms-row:hover .vms-img img { transform: scale(1.05); }
        
        .vms-text { flex: 1; }
        .vms-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px;}
        .vms-icon { width: 60px; height: 60px; background: #fff; color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid var(--border-color);}
        .vms-text h3 { font-size: 30px; color: var(--dark-bg); margin: 0; }
        .vms-text p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px;}
        .vms-text ul { padding-left: 20px; color: var(--text-dark); font-size: 15px;}
        .vms-text li { margin-bottom: 10px; }

        /* --- SECTION 4: Global Presence (Clean Background Map) --- */
        .map-section { background: #ffffff; padding: 100px 0; position: relative; overflow: hidden;}
        
        /* Map as pure background */
        .world-map-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 1200px; opacity: 0.08; filter: grayscale(100%); pointer-events: none; z-index: 1;}
        
        .loc-grid { display: flex; justify-content: center; gap: 40px; position: relative; z-index: 2; flex-wrap: wrap;}
        
        .loc-card { width: 400px; background: rgba(255,255,255,0.9); backdrop-filter: blur(5px); padding: 40px; border-radius: 8px; border: 1px solid var(--border-color); box-shadow: 0 15px 35px rgba(0,0,0,0.04); transition: 0.3s; text-align: center;}
        .loc-card:hover { border-color: var(--primary-color); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08);}
        
        .loc-icon { width: 60px; height: 60px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 28px; margin: 0 auto 20px auto; border: 1px solid var(--border-color);}
        .loc-details h3 { margin: 0 0 5px 0; font-size: 22px; color: var(--dark-bg); }
        .loc-details span { display: inline-block; font-size: 12px; font-weight: bold; color: var(--primary-color); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;}
        .loc-details p { font-size: 15px; color: var(--text-light); margin: 0; line-height: 1.6;}

        /* Footer */
        footer { background: var(--darker-bg); color: #94a3b8; padding: 60px 0 20px 0; font-size: 14px; position: relative; z-index: 10;}
        .footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
        .footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 25px; text-transform: uppercase; position: relative; padding-bottom: 10px;}
        .footer-col h4::after { content:''; position:absolute; bottom:0; left:0; width:30px; height:2px; background:var(--primary-color); }
        .footer-col ul { list-style: none; padding: 0; margin: 0; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col a { color: #94a3b8; }
        .footer-col a:hover { color: var(--primary-color); }
        .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 50px; padding-top: 25px; font-size: 13px;}

        /* =========================================
           H5 / Mobile Responsive Optimization
           ========================================= */
        @media (max-width: 768px) {
            /* Header & Navigation - App Style Horizontal Scroll */
            .header { padding: 10px 0; }
            .nav-container { flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px; }
            .logo { max-width: 120px; }
            .logo img { max-height: 30px; width: auto; }
            .nav-actions { gap: 10px; }
            .nav-actions span { display: none; } 
            .nav-actions a { font-size: 12px !important; }
            .nav-actions .btn { padding: 6px 12px !important; font-size: 12px !important; }
            
            .main-menu { 
                width: 100%; flex-wrap: nowrap; justify-content: flex-start; 
                overflow-x: auto; -webkit-overflow-scrolling: touch; 
                gap: 20px; padding: 12px 5px 5px 5px; 
                border-top: 1px solid var(--border-color); margin-top: 5px;
            }
            .main-menu::-webkit-scrollbar { display: none; }
            .main-menu { -ms-overflow-style: none; scrollbar-width: none; }
            .main-menu a { white-space: nowrap; font-size: 13px; }

            /* Hero Section */
            .about-hero { padding: 60px 0; }
            .about-hero h1 { font-size: 32px; }
            .hero-desc { font-size: 15px; }

            /* Story Section */
            .story-layout { flex-direction: column; gap: 40px; }
            .story-text h3 { font-size: 26px; }
            .story-badge { position: relative; bottom: auto; left: auto; margin-top: -30px; margin-left: 20px; margin-right: 20px; z-index: 2; padding: 15px 20px; text-align: center; }
            .story-badge h4 { font-size: 20px; }

            /* Vision, Mission, CSR */
            .vms-section { padding: 50px 0; }
            .vms-row, .vms-row.reverse { flex-direction: column; gap: 25px; margin-bottom: 50px; }
            .vms-img img { height: 250px; }
            .vms-header { gap: 15px; }
            .vms-icon { width: 50px; height: 50px; font-size: 22px; flex-shrink: 0;}
            .vms-text h3 { font-size: 24px; }

            /* Map & Locations */
            .map-section { padding: 50px 0; }
            .loc-grid { flex-direction: column; gap: 25px; align-items: center; }
            .loc-card { width: 100%; max-width: 400px; padding: 30px 20px; box-sizing: border-box; }

            /* Footer */
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            
            /* Global Adjustments */
            .section-padding { padding: 40px 0; }
            .section-header { margin-bottom: 40px; }
            .section-header h2 { font-size: 26px; }
        }