
    /* 全局容器 */
    .cozylil-about-page {
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        color: #444;
        line-height: 1.8;
    }
    /* 头部设置 */
    .about-header {
        text-align: center;
        margin-bottom: 50px;
    }
    .about-header h1 {
        font-size: 36px;
        color: #000;
        margin-bottom: 20px;
    }
    .brand-intro {
        font-size: 17px;
        text-align: center;
        margin-bottom: 40px;
        color: #555;
    }
    /* 主图展示区 */
    .factory-hero {
        margin: 40px 0;
        position: relative;
    }
    .factory-hero img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: block; 
    }
    .factory-badge {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: #fecb2e;
        color: #000;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: bold;
        font-size: 14px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* 优势卡片布局 */
    .why-choose-us {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 60px;
    }
    .benefit-card {
        flex: 1;
        min-width: 280px;
        background: #f9f9f9;
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        border-bottom: 4px solid #fecb2e;
        transition: transform 0.3s;
    }
    .benefit-card:hover {
        transform: translateY(-5px);
    }
    .benefit-card .icon {
        font-size: 40px;
        margin-bottom: 15px;
        display: block;
    }
    .benefit-card h3 {
        color: #000;
        margin-bottom: 15px;
        font-size: 20px;
    }
    .benefit-card p {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

    /* 结语区块 */
    .closing-text {
        text-align: center;
        margin-top: 60px;
        padding: 40px;
        background: #fff9e6;
        border-radius: 16px;
    }

    /* 移动端适配：防止错位 */
    @media (max-width: 768px) {
        .about-header h1 { font-size: 28px; }
        .why-choose-us { flex-direction: column; }
        .factory-badge { 
            position: relative; 
            bottom: 0; 
            right: 0; 
            margin-top: 10px; 
            display: inline-block;
            text-align: center;
        }
        .factory-hero { text-align: center; }
    }
