
    /* 核心视觉：震撼力与力量感 */
    .cozylil-legal-shield {
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 20px;
        font-family: 'Arial Black', Gadget, sans-serif; /* 粗体字体现力量 */
        color: #1a1a1a;
        background-color: #ffffff;
    }
    
    .legal-header {
        text-align: center;
        padding: 50px 20px;
        background: #1a1a1a; /* 暗黑背景 */
        color: #fecb2e; /* 品牌金 */
        border-radius: 4px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        margin-bottom: 60px;
    }

    .legal-header h1 {
        font-size: 42px;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 1.1;
    }

    .legal-header p {
        font-size: 18px;
        margin-top: 15px;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        letter-spacing: 4px;
        opacity: 0.9;
    }

    .legal-section {
        margin-bottom: 50px;
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 20px;
    }

    .legal-section h2 {
        font-size: 24px;
        color: #000;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .legal-section h2::before {
        content: "";
        display: inline-block;
        width: 12px;
        height: 24px;
        background: #fecb2e;
        margin-right: 15px;
    }

    .legal-content p {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.8;
        color: #444;
        margin-bottom: 20px;
    }

    /* 力量感模块 */
    .sovereignty-box {
        background: #f9f9f9;
        border-left: 8px solid #1a1a1a;
        padding: 40px;
        margin: 40px 0;
    }

    .sovereignty-box h3 {
        font-size: 22px;
        margin-top: 0;
        color: #000;
        text-transform: uppercase;
    }

    .bullet-points {
        list-style: none;
        padding: 0;
    }

    .bullet-points li {
        margin-bottom: 15px;
        font-size: 17px;
        font-weight: bold;
        display: flex;
        align-items: flex-start;
    }

    .bullet-points li::before {
        content: "✕"; /* 强制感 */
        color: #d0021b;
        margin-right: 15px;
        font-weight: 900;
    }

    .contact-shield {
        text-align: center;
        padding: 60px 20px;
        background: #fecb2e;
        color: #000;
        border-radius: 4px;
        margin-top: 80px;
    }

    .contact-shield h3 {
        font-size: 26px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .contact-shield a {
        font-size: 28px;
        color: #000;
        text-decoration: none;
        border-bottom: 3px solid #000;
        transition: 0.3s;
    }

    .contact-shield a:hover {
        opacity: 0.7;
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
        .legal-header h1 { font-size: 28px; }
        .legal-header p { font-size: 14px; letter-spacing: 2px; }
        .sovereignty-box { padding: 25px; }
        .contact-shield a { font-size: 20px; }
    }
