*{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-bottom: 1px solid #eee;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: bold;
            font-size: 1.2rem;
            color: #4CAF50;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 30px;
            position: relative;
            overflow: hidden;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            margin: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #7B1FA2;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #7B1FA2;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #2E7D32 0%, #7B1FA2 100%);
            padding: 120px 0 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 5%;
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            opacity: 0.3;
        }

        .hero-section::after {
            content: '🌱';
            position: absolute;
            top: 15%;
            left: 8%;
            font-size: 60px;
            opacity: 0.2;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            position: relative;
        }

        .hero-content h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #4CAF50;
        }

        .hero-content p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 40px auto 0;
            line-height: 1.7;
        }

        /* Main Content */
        .main-content {
            background: #f5f5f5;
            padding: 80px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Who We Are Section */
        .who-we-are {
            text-align: center;
            margin-bottom: 80px;
        }

        .who-we-are h2 {
            font-size: 2.5rem;
            color: #4D2A65;
            font-family: 'Inria Sans', sans-serif;
            margin-bottom: 30px;
        }

        .who-we-are p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 50px;
        }

        .pillars-intro {
            font-size: 1.2rem;
            color: #4CAF50;
            font-weight: 600;
            margin-bottom: 50px;
        }

        /* Three Pillars */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .pillar-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pillar-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .pillar-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: #f5f5f5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }

        .pillar-card h3 {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .pillar-card p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Quote Section */
        .quote-section {
            text-align: center;
            margin: 80px 0;
            padding: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .quote-section blockquote {
            font-size: 1.3rem;
            color: #666;
            font-style: italic;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .quote-section blockquote::before,
        .quote-section blockquote::after {
            content: '"';
            font-size: 2rem;
            color: #7B1FA2;
            font-weight: bold;
        }

        /* Founder Section */
        .founder-section {
            background: white;
            padding: 60px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 10px;
            align-items: center;
        }

        .founder-image {
            position: relative;
        }

        .founder-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            background: #4CAF50;
            border-radius: 50%;
            opacity: 0.2;
            z-index: 0;
        }

        .founder-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .founder-content h2 {
            font-size: 2rem;
            color: #4CAF50;
            margin-bottom: 10px;
        }

        .founder-content h3 {
            font-size: 1.5rem;
            color: #4D2A65;
            font-family: 'Inria Sans', sans-serif;
            margin-bottom: 25px;
        }

        .founder-content p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        /* Footer - Same as other pages */
        .footer {
            background: #333;
            color: white;
            padding: 60px 0 30px 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #8BC34A;
        }

        .footer-section p,
        .footer-section li {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #8BC34A;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #8BC34A;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            transition: background 0.3s ease;
        }

        .social-links a:hover {
            background: #7CB342;
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 30px;
            text-align: center;
            color: #999;
        }

        .footer-bottom p {
            margin-bottom: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            /* navbar */
            .navbar {
                padding: 10px 0;
            }

            .nav-container {
                padding: 0 10px;
            }

            .logo {
                font-size: 0.6rem;
                gap: 10px;
            }

            .logo-icon {
                width: 26px;
                height: 22px;
            }

            .nav-links {
                gap: 11px;
            }

            .nav-links a {
                font-size: 0.6rem;
                font-weight: 600;
            }
            
            .nav-menu {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .pillars-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .founder-section {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
                padding: 40px 30px;
            }

            .founder-image {
                max-width: 250px;
                margin: 0 auto;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .nav-container {
                padding: 0 10px;
            }

            .logo {
                font-size: 0.8rem;
                gap: 4px;
            }

            .logo-icon {
                width: 24px;
                height: 18px;
            }

            .nav-links {
                gap: 10px;
            }

            .nav-links a {
                font-size: 0.65rem;
                font-weight: 700;
            }
        }
        

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }