        .company-profile-layout {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .company-header {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        .company-banner {
            height: 100px;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--pink-light) 100%);
            position: relative;
        }
        .company-info-bar {
            padding: 30px;
            display: flex;
            align-items: flex-start;
            gap: 30px;
            position: relative;
        }
        .company-logo-box {
            width: 120px;
            height: 120px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-top: -60px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 10px;
            z-index: 2;
        }
        .company-logo-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .company-details {
            flex: 1;
        }
        .company-name {
            font-size: 28px;
            font-weight: 900;
            color: var(--text-main);
            margin-bottom: 10px;
        }
        .company-tags {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .company-tag {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: var(--text-muted);
            background: #f8fafc;
            padding: 5px 12px;
            border-radius: 20px;
        }
        .company-action {
            display: flex;
            gap: 15px;
        }
        .company-content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }
        .company-section {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        .section-title-sub {
            font-size: 20px;
            font-weight: bold;
            color: var(--text-main);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title-sub::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 20px;
            background: var(--primary);
            border-radius: 2px;
        }
        .company-desc {
            color: #475569;
            line-height: 1.8;
            font-size: 15px;
            white-space: pre-line;
            word-wrap: break-word;
            word-break: break-all;
            overflow-wrap: break-word;
        }
        .welfare-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
        }
        .welfare-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            color: #334155;
        }
        .welfare-item-icon {
            color: var(--primary);
            font-size: 18px;
        }
        
        @media (max-width: 768px) {
            .company-info-bar {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 20px;
            }
            .company-logo-box {
                margin-top: -60px;
            }
            .company-tags {
                justify-content: center;
            }
            .company-content-grid {
                grid-template-columns: 1fr;
            }
        }