
        /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat-Bold', sans-serif;
            color: #000000 !important; /* 所有文字强制黑色 */
        }

        /* 基础样式 */
        body {
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 头部样式 */
        header {
            background-color: #EBE7E3; /* 你指定的背景色 */
            padding: 20px 0;
            text-align: center;
        }

        header h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* 主体内容样式 */
        main {
            padding: 40px 0;
        }

        /* 企业介绍部分 */
        .company-story {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }

        .story-section {
            margin-bottom: 30px;
        }

        .story-section h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #000;
        }

        .story-section p {
            font-size: 1rem;
            margin-bottom: 12px;
            line-height: 1.8;
        }

        /* 联系信息部分 */
        .contact-info {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        @media (min-width: 768px) {
            .contact-info {
                grid-template-columns: 1fr 1fr;
            }
        }

        .company-contact, .team-contact {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .section-title {
            font-size: 1.6rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .contact-item {
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .contact-item strong {
            display: inline-block;
            width: 120px;
        }

        .contact-link {
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-link:hover {
            text-decoration: underline;
        }

        .team-member {
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .team-member:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .team-member h3 {
            margin-bottom: 10px;
            font-size: 1.4rem;
        }

        /* 响应式调整 */
        @media (max-width: 767px) {
            header h1 {
                font-size: 1.8rem;
            }

            .story-section h2 {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .company-story, .company-contact, .team-contact {
                padding: 20px;
            }

            .contact-item strong {
                width: 100px;
            }
        }

        @media (max-width: 480px) {
            header h1 {
                font-size: 1.5rem;
            }

            main {
                padding: 20px 0;
            }

            .contact-item {
                font-size: 0.95rem;
            }
        }
    