
        .pillar-page, .pillar-page * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        .pillar-page {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #2d3a2c;
            background-color: #fdfdf8;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .pillar-page img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.05);
        }
        .pillar-page h1, .pillar-page h2, .pillar-page h3 {
            font-weight: 700;
            line-height: 1.3;
            color: #1a2e1a;
        }
        .pillar-page h1 {
            font-size: 2.8rem;
            letter-spacing: -0.5px;
        }
        .pillar-page h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        .pillar-page h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #c28b2e;
            margin-top: 0.5rem;
            border-radius: 2px;
        }
        .pillar-page h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #3a5a3a;
        }
        .pillar-page a {
            color: #2d5e2d;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s ease;
        }
        .pillar-page a:hover {
            border-bottom-color: #2d5e2d;
        }
        .pillar-page .btn {
            display: inline-block;
            background-color: #c28b2e;
            color: #fff;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background-color 0.25s, transform 0.2s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
            text-decoration: none;
            border-bottom: none;
            text-align: center;
        }
        .pillar-page .btn:hover {
            background-color: #a6731e;
            transform: translateY(-2px);
            border-bottom: none;
        }
        .pillar-page .btn-outline {
            background: transparent;
            border: 2px solid #c28b2e;
            color: #c28b2e;
        }
        .pillar-page .btn-outline:hover {
            background: #c28b2e;
            color: #fff;
        }
        .pillar-page .btn-white {
            background: #fff;
            color: #1a2e1a;
            border: 2px solid #fff;
        }
        .pillar-section {
            margin: 5rem 0;
        }
        .pillar-hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 3rem;
            padding: 3rem 0 2rem;
        }
        .pillar-hero-content {
            flex: 1 1 500px;
        }
        .pillar-hero-image {
            flex: 1 1 400px;
        }
        .pillar-hero-image img {
            width: 100%;
            object-fit: cover;
            border-radius: 24px;
        }
        .pillar-subheadline {
            font-size: 1.25rem;
            color: #556b2f;
            margin: 1rem 0 2rem;
        }
        .trust-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 1.5rem;
            background: #f4f7f2;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            margin: 2rem 0;
            text-align: center;
        }
        .trust-item {
            flex: 1 1 120px;
        }
        .trust-number {
            font-size: 2rem;
            font-weight: 800;
            color: #2d3a2c;
            display: block;
        }
        .trust-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #556b2f;
        }
        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .advantage-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 1.5rem;
            box-shadow: 0 12px 30px rgba(0,0,0,0.04);
            transition: transform 0.25s, box-shadow 0.25s;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.03);
        }
        .advantage-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 36px rgba(0,0,0,0.08);
        }
        .advantage-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #c28b2e;
        }
        .highlight-badge {
            background: #e8f0e4;
            color: #2d5e2d;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 0.8rem;
        }
        .factory-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        /* 修改后的分类卡片带图片 */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.8rem;
        }
        .category-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.04);
            transition: transform 0.2s, box-shadow 0.2s;
            text-align: center;
            border: 1px solid #e8ede4;
        }
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 28px rgba(0,0,0,0.08);
        }
        .category-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 0;
            box-shadow: none;
        }
        .category-card .cat-text {
            padding: 1.2rem 1rem;
        }
        .category-card h4 {
            margin-bottom: 0.3rem;
            font-size: 1.2rem;
            color: #2d3a2c;
        }
        .category-card p {
            color: #556b2f;
            font-size: 0.9rem;
        }
        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
            counter-reset: step;
        }
        .step {
            flex: 1 1 150px;
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 1rem;
            text-align: center;
            position: relative;
            box-shadow: 0 4px 18px rgba(0,0,0,0.03);
            border: 1px solid #e8ede4;
        }
        .step::before {
            counter-increment: step;
            content: counter(step);
            display: inline-block;
            width: 36px;
            height: 36px;
            background: #c28b2e;
            color: #fff;
            border-radius: 50%;
            line-height: 36px;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .case-snippet {
            background: #f9faf7;
            border-left: 6px solid #c28b2e;
            padding: 1.5rem 2rem;
            margin-bottom: 1.5rem;
            border-radius: 0 12px 12px 0;
        }
        .founder-block {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            background: #f4f7f2;
            border-radius: 20px;
            padding: 2rem;
        }
        .founder-img {
            flex: 0 0 120px;
            background: #dce5d8;
            border-radius: 50%;
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: #556b2f;
        }
        .faq-item {
            border-bottom: 1px solid #e0e3db;
            padding: 1.2rem 0;
        }
        .faq-question {
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            margin-bottom: 0.3rem;
            color: #1a2e1a;
        }
        .faq-answer {
            color: #4a5a4a;
            margin-top: 0.5rem;
        }
        .resource-download {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin: 2rem 0;
        }
        .download-card {
            background: #fff;
            border: 1px solid #dce5d8;
            border-radius: 16px;
            padding: 1.8rem;
            text-align: center;
            flex: 1 1 200px;
        }
        .scheduled-badge {
            display: inline-flex;
            align-items: center;
            background: #2d5e2d;
            color: #fff;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-right: 0.5rem;
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .related-column {
            background: #f9faf7;
            border-radius: 16px;
            padding: 1.8rem;
        }
        .related-column ul {
            list-style: none;
            padding-left: 0;
        }
        .related-column li {
            margin-bottom: 0.7rem;
        }
        .contact-block {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: flex-start;
            background: #fff;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 12px 30px rgba(0,0,0,0.04);
        }
        .contact-info {
            flex: 1 1 250px;
        }
        .contact-form {
            flex: 1 1 350px;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #dce5d8;
            border-radius: 8px;
            font-family: inherit;
        }
        .footer-note {
            text-align: center;
            margin: 3rem 0 2rem;
            color: #6a7a6a;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .pillar-page h1 {
                font-size: 2rem;
            }
            .pillar-hero {
                flex-direction: column;
                gap: 2rem;
            }
            .factory-showcase {
                grid-template-columns: 1fr;
            }
            .trust-bar {
                flex-direction: column;
            }
            .founder-block {
                flex-direction: column;
                text-align: center;
            }
            .contact-block {
                flex-direction: column;
            }
        }