
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #fafaf7;
            color: #1e2a1c;
            line-height: 1.6;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .hero {
            background: linear-gradient(135deg, #eef5e9 0%, #f9f5ea 100%);
            border-radius: 32px;
            margin: 32px 0 48px;
            padding: 60px 48px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: #2c3e2f;
            margin-bottom: 16px;
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .hero .tagline {
            font-size: 1.2rem;
            color: #539A3F;
            font-weight: 500;
            margin-bottom: 20px;
        }
        .hero p {
            max-width: 700px;
            margin: 0 auto;
            color: #4a5b44;
            font-size: 1.05rem;
        }

        .section {
            margin: 64px 0;
        }
        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e2f;
            margin-bottom: 48px;
            position: relative;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #d4a373;
            margin: 12px auto 0;
            border-radius: 2px;
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .pillar-card {
            background: white;
            border-radius: 28px;
            padding: 32px 28px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.04);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .pillar-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.08);
        }
        .pillar-icon {
            font-size: 2.4rem;
            margin-bottom: 20px;
        }
        .pillar-card h3 {
            font-size: 1.5rem;
            color: #539A3F;
            margin-bottom: 16px;
        }
        .pillar-card h4 {
            font-size: 1.1rem;
            color: #2c3e2f;
            margin: 20px 0 8px;
            font-weight: 600;
        }
        .pillar-card p, .pillar-card li {
            color: #4a5b44;
            font-size: 0.95rem;
        }
        .pillar-card ul {
            padding-left: 20px;
            margin: 12px 0;
        }
        .pillar-card li {
            margin-bottom: 8px;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 32px 0;
        }
        .why-item {
            background: white;
            border-radius: 24px;
            padding: 28px 20px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0,0,0,0.03);
            border: 1px solid #eaeadc;
        }
        .why-icon {
            font-size: 2rem;
            margin-bottom: 16px;
        }
        .why-item h4 {
            font-size: 1.2rem;
            color: #2c3e2f;
            margin-bottom: 12px;
        }
        .why-item p {
            font-size: 0.9rem;
            color: #5a6b52;
        }

        .global-box {
            background: #eef5e9;
            border-radius: 32px;
            padding: 48px 32px;
            text-align: center;
            margin: 48px 0;
        }
        .global-box h3 {
            font-size: 1.8rem;
            color: #2c3e2f;
            margin-bottom: 16px;
        }
        .global-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
            margin: 24px 0;
        }
        .stat {
            font-size: 1.2rem;
            font-weight: 500;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #539A3F;
            line-height: 1;
        }

        .cta-section {
            background: #2c3e2f;
            color: white;
            border-radius: 32px;
            padding: 56px 40px;
            text-align: center;
            margin: 64px 0;
        }
        .cta-section h3 {
            font-size: 1.8rem;
            margin-bottom: 16px;
        }
        .cta-section p {
            max-width: 600px;
            margin: 0 auto 24px;
            color: #d4e0cf;
        }
        .btn {
            display: inline-block;
            background: #d4a373;
            color: #2c3e2f;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s;
        }
        .btn:hover {
            background: #c28a56;
            color: white;
        }

        .site-footer {
            border-top: 1px solid #e0e0d4;
            padding: 32px 0;
            margin-top: 48px;
            text-align: center;
            color: #6b7a62;
            font-size: 0.85rem;
        }

        .img-placeholder {
            background: #e8e6dc;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8b9a7a;
            font-size: 0.9rem;
            padding: 40px 20px;
            margin: 24px 0;
        }

        @media (max-width: 900px) {
            .pillars-grid, .why-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero {
                padding: 40px 24px;
            }
            .section-title {
                font-size: 1.6rem;
            }
        }
    