  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }

        /* çŒ«èŒ è‰—å¿™éˆ©â’™î‡¸ãƒ¢â‚¬éƒä¹…Ñ€â‚¬æ‰³â‚¬ï¿½ + èŒ…è›åºèŽ½é™†æ¼ */
        body {
            min-height: 100vh;
            /* position: relative; */
            display: flex;
            flex-direction: column;
            align-items: center;
            /* padding: 2rem 1rem; */
        }

        .body-bg-image {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
            z-index: -2;
        }

        @media (max-width: 768px) {
            .body-bg-image {
                object-position: center;
                background-size: cover;
            }
        }

        @media (max-width: 550px) {
            .body-bg-image {
                /* æ°“æŽ³è«æ°“å¤è«æ°“é¹¿éˆ¥â’šã¢å¦“æºãƒ…æŽ†â‚¬æ’ã„†æ™æ—ï¸¹åŠ‰ç‚‰æ°“éˆ¥éƒä¹…Ñ€â‚¬æ‰³â‚¬âˆ¶Î»æºŒä¹…îž ã¢ï¿½ */
                background-position: 50% 50%;
            }
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(255 255 255);
            pointer-events: none;
            z-index: -1;
        }

        .page-card {
            max-width: 1280px;
            width: 100%;
            margin: 20px auto;
            /* background: transparent; */
            position: relative;
            z-index: 1;
        }

        /* æ°“ç‚‰å½•çŒ«è—›é™‹æ°“è‰—æ½žæ°“é¸¥é¸¥ */
        .nav-row {
            display: flex;
            align-items: center;
            padding-bottom: 1.5rem;
            margin-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.3);
        }

        .breadcrumb {
            color: #f0f4fa;
            font-size: 1rem;
            font-weight: 450;
            background: transparent;
            padding: 0.3rem 1.5rem 0.3rem 1.2rem;
            border-radius: 0;
            display: inline-flex;
            align-items: center;
            border: none;
            box-shadow: none;
        }

        .breadcrumb a {
            color: inherit;
            text-decoration: none;
            transition: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
            color: #ffffff;
        }
        .breadcrumb a:last-child {
            font-weight: 600;
            color: #ffffff;
        }
        .breadcrumb a:last-child span {
            color: inherit;
            font-weight: inherit;
        }

        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.75rem;
            color: #b8d4f5;
        }

        .section-title {
            margin: 0;
            max-width: 800px;
        }

        .section-title h1 {
            font-size: 3.2rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            color: #0f3a5c;
            line-height: 1.1;
            border-left: 8px solid #1e5a8a;
            padding-left: 1.5rem;
        }

        /* æ°“éˆ¥å¥¥î‡¸Î²çŠ«â‚¬âˆ¶â”žâ‘ºæºãƒ‚ä»¿è£îž îž å¹»â”¾åŠ‰é™‡ */

        /* å¿™åž„ç‚‰æ°“é™†åž„æ°“è—›éˆ¥çŠ†ãƒ¢â‚¬å¥¥è£ãƒ…æ–å¥½ãƒ…æ¦‚ï¿½ - ç›²é™†é©´èŽ½éˆ¥îŸ‹ãƒ‚åµŸçŠ†ancockè«å¿™è—´æ²¤èŽ½éˆ©â’™çŸ«ã„¢â‚¬å¥¥è£ã„†æ™æ—ï¸¹åŠ‰ç‚‰ */


        .trap-left, .trap-right {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 2rem 2.2rem;
            box-sizing: border-box;
            overflow-y: auto;
        }

        .trap-left {
            background: rgba(255,255,255,0.95);
            clip-path: polygon(0% 0%, 60% 0%, 40% 100%, 0% 100%);
            justify-content: flex-start;
        }

        .trap-right {
            background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=2832&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 40% 100%);
            justify-content: flex-end;
        }

        @media (max-width: 768px) {
            .trap-right {
                background-size: cover;
                background-position: center 30%;
            }
        }

        @media (max-width: 550px) {
            .trap-right {
                background-position: center 40%;
                background-size: 150%;
            }
        }

        .intro-text-container {
            width: 35%;
            min-width: 240px;
            max-width: 400px;
            background: transparent;
            color: #1e3b58;
            font-size: 1.5rem;
            line-height: 1.7;
            margin-right: auto;
            padding-left: 0.5rem;
            text-indent: 2em;
        }

        .trap-left::-webkit-scrollbar, .trap-right::-webkit-scrollbar {
            width: 6px;
        }
        .trap-left::-webkit-scrollbar-thumb, .trap-right::-webkit-scrollbar-thumb {
            background: #b0c9f0;
            border-radius: 10px;
        }

        /* èŒ…æ‹§éœ²æ°“å¤å•ªç›²å½•è›ç›²èµ‚æ‹§æ°“è‰—æ½žæ°“é¸¥é¸¥ - æ°“è§éš†èŽ½éˆ¥æ‰³â‚¬âˆ¶ã¢é“°æ£µÑ€â‚¬îŸ‹ãƒ‚åµŸçŠ†ancockè«å¿™è—´æ²¤èŽ½éˆ©â’™çŸ«ã„¢â‚¬å¥¥ï¿½ */
        .subsidiary-section h2 {
                font-size: 2.3rem;
                font-weight: 500;
                color: #000000;
                margin-bottom: 1.8rem;
                display: flex;
                align-items: center;
                gap: 10px;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        /* å¿™éˆ¥æ’¯â‚¬âˆ¶îž î¿çŠ†ãƒ‹å—â‚¬æ–†îŸŠÃ·îŸ‹ãƒ…æ–å¥½ãƒ…æ¦‚ */
        .article-section {
            margin: 2rem 0 1.5rem 0;
            background: rgb(232 232 232 / 90%);
            border-radius: 0;
            padding: 2rem 2rem;
            border: none;
            box-shadow: none;
            backdrop-filter: blur(2px);
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.8rem;
        }

        .article-section h2 {
            font-size: 1.9rem;
            font-weight: 500;
            color: #1e4e88;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .view-more-btn {
    display: block;
    width: fit-content;
    margin: 0;
    padding: 10px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.view-more-btn:active {
    transform: translateY(0);
}

        .article-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .article-item {
            background-color: rgba(255,255,255,0.95);
            border: 1px solid #a0bde0;
            border-radius: 12px;
            padding: 1.5rem 1.8rem;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .article-item:hover {
            background: linear-gradient(145deg, rgba(226,240,255,0.98), rgba(184,212,245,0.98));
            border-color: #1e5a8a;
            transform: translateX(8px);
            box-shadow: 0 8px 20px -4px #1e4e88;
        }

        .article-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #1e5a8a, #3a7bc8);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .article-item:hover::before {
            opacity: 1;
        }

        .article-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #0f3a60;
            margin-bottom: 0.8rem;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .more {
            font-size: 1.3rem;
            font-weight: 600;
            color: #0f3a60;
            margin-bottom: 0.8rem;
            line-height: 1.4;
            transition: color 0.3s ease;
            text-align: center;
            font-size: x-large;
        }
        .article-item:hover .article-title {
            color: #0a2f50;
        }

        .article-meta {
            display: flex;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: #5a7a9a;
            margin-bottom: 0.6rem;
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .article-meta i {
            font-size: 0.85rem;
            color: #1e5a8a;
        }

        .article-summary {
            font-size: 18px;
            line-height: 1.6;
            color: #163a58;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* å¿™éˆ¥å…‰â‚¬å¥½ãƒ¢â‚¬â‘©â‚¬çŠ†ï¸¹â‚¬æ£µîž î…›â‚¬æ’â”žÃ·å§‘Ñ€â‚¬éƒî†šÎ²çŠ…è®¿ãƒ‚æ‚¸å¾î‡·å¦“å–¢ãƒ‚ã¢åµœÑ€â‚¬ï¿½ article-itemèŒ‚å½•éˆ¥ï¿½ */
        .policy-item {
            background-color: rgb(234 234 234);
            border: 1px solid #a0bde0;
            border-radius: 12px;
            padding: 1.5rem 1.8rem;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .policy-item:hover {
            background: linear-gradient(145deg, rgba(226,240,255,0.98), rgba(184,212,245,0.98));
            border-color: #1e5a8a;
            transform: translateX(8px);
            box-shadow: 0 8px 20px -4px #1e4e88;
        }

        .policy-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #1e5a8a, #3a7bc8);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .policy-item:hover::before {
            opacity: 1;
        }

        .company-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.8rem;
        }

        .company-item {
            background-color: rgb(234 234 234);
            border: 1px solid #a0bde0;
            border-radius: 60px;
            padding: 0.7rem 1rem;
            text-align: center;
            font-weight: 500;
            color: #1b4b7a;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            cursor: pointer;
            position: relative;
            z-index: 1;
            backdrop-filter: blur(2px);
            font-size: 17px;
        }

        .company-item:hover {
            background: linear-gradient(145deg, rgba(226,240,255,0.95), rgba(184,212,245,0.95));
            border-color: #1e5a8a;
            color: #0a3a62;
            transform: scale(1.02) translateY(-2px);
            box-shadow: 0 12px 24px -8px #1e4e88;
        }

        .company-item.active {
            background: linear-gradient(145deg, rgba(194,218,252,0.95), rgba(159,190,240,0.95));
            border-color: #0f4a7a;
            color: #062b4a;
            transform: scale(1.02) translateY(-2px);
            box-shadow: 0 12px 24px -8px #0f3a6a;
            font-size: 17px;
        }

        .company-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
            z-index: 2;
            pointer-events: none;
            border-radius: 60px;
        }

        .company-item:hover::after {
            left: 100%;
        }

        /* å¿™è½èµ‚æ°“é©´èŒ ç›²å½•è›ç›²èµ‚æ‹§èŒ‚å½•è—›æ°“éˆ¥Î²îƒžãƒ‚å¾›è¯¥ã¢çƒ©â‚¬å§‘îž å®¦åµœî‡·å°–â‚¬æ‡ŠÑ€â‚¬å…«å–¢ãƒ‚æ¿ƒâ‚¬ï¿½ - æ°“è§è‰©èŒ…éˆ§îƒå¾Î»æº‘çŸ«Ñ€ï¿½ï¿½é™†çŒ«éˆ¥å¥¥è£ã„†æ™æ—ï¸¹ï¿½ï¿½ç‚‰ */
        .core-enterprise {
            margin: 1.2rem 0 1.5rem 0;
            background: rgb(232 232 232 / 90%);
            border-radius: 0;
            padding: 2rem 2rem;
            border: none;
            box-shadow: none;
            backdrop-filter: blur(2px);
        }

        .company-info-row {
            display: flex;
            gap: 2rem;
            align-items: stretch;
        }

        .company-info-left {
            flex: 1.4;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .company-name {
            font-size: 1.6rem;
            font-weight: 600;
            color: #0f3a60;
            letter-spacing: -0.01em;
            line-height: 1.3;
            margin-bottom: 1rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .company-description {
            font-size: 18px;
            line-height: 1.6;
            color: #163a58;
            margin-bottom: 1.2rem;
            text-indent: 2em;
            display: block;
            height: 240px;
        }

        .company-description::-webkit-scrollbar {
            width: 4px;
        }

        .company-description::-webkit-scrollbar-thumb {
            background: #b0c9f0;
            border-radius: 10px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.6rem 0.8rem;
            background: transparent;
            border-radius: 0;
            /* padding: 1.2rem 1.2rem; */
            border: none;
        }

        .contact-item {
            display: flex;
            align-items: baseline;
            gap: 0;
            font-size: 0.9rem;
            color: #1d3f5c;
            word-break: break-word;
        }

        .contact-item.full-width {
            grid-column: span 2;
        }

        .contact-item .label {
            font-weight: 600;
            color: #0d3252;
            min-width: auto;
            background: transparent;
            padding: 0.2rem 0.4rem;
            border-radius: 0;
            text-align: center;
            font-size: 18px;
            border: none;
            white-space: nowrap;
        }

        .contact-item .value {
            font-weight: 450;
            color: #0d3252;
            font-size: 18px;
            white-space: normal;
        }

        .address-value {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .hotline-value {
            white-space: nowrap;
        }

        .contact-item i {
            width: 1rem;
            color: #1e5a8a;
            font-size: 0.9rem;
            text-align: center;
        }

        .contact-item .value a {
            color: #1c598b;
            text-decoration: none;
            border-bottom: 1px dotted #1e5a8a;
            transition: all 0.1s;
        }

        .contact-item .value a:hover {
            color: #063e6e;
            border-bottom: 2px solid #0d3f6b;
            background-color: #e8f1fe;
            padding: 0.1rem 0.2rem;
            border-radius: 0;
        }

        .company-image {
            flex: 1;
            background: rgba(220, 230, 245, 0.9);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            /* padding: 2rem 1rem; */
            border: none;
            box-shadow: none;
            color: #1e4f7a;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 240px;
        }
        .view-more-btn {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    padding: 10px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.view-more-btn:active {
    transform: translateY(0);
}

        @media (max-width: 768px) {
            .company-image {
                display: none;
            }
        }

        .company-image img {
            width: 480px;
            max-width: 100%;
            height: 320px;
            object-fit: cover;
            border-radius: 0;
            transition: transform 0.3s ease;
        }

        .company-image:hover img {
            transform: scale(1.05);
        }

        .foot-note {
            margin-top: 2.5rem;
            font-size: 0.85rem;
            color: #000000;
            text-align: center;
            border-top: 1px dashed rgba(255,255,255,0.3);
            padding-top: 1.5rem;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        /* æ°“éˆ¥æºŒåµœãƒ‚è¡¡â‚¬æ¾ãƒ‚æ‚¸å¾îŸŠæŒæ—ï¸¹â‚¬â’™ï¿½ */
        @media (max-width: 900px) {
            .intro-text-container {
                width: 40%;
            }
            .company-info-row {
                flex-direction: column;
                gap: 1.5rem;
            }
            .company-name {
                font-size: 1.4rem;
            }
            .subsidiary-section h2 {
                font-size: 1.6rem;
            }
            .article-section h2 {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 0.8rem 0.5rem;
            }
            
            .section-title h1 {
                font-size: 1.8rem;
                padding-left: 0.8rem;
                border-left-width: 5px;
            }
            
            .trap-left, .trap-right {
                padding: 1.2rem;
            }
            
            .intro-text-container {
                width: 100%;
                max-width: 100%;
                font-size: 1rem;
                padding-left: 0;
            }
            
            .subsidiary-section {
                margin-bottom: 0.8rem;
            }
            
            .subsidiary-section h2 {
                font-size: 1.4rem;
                margin-bottom: 0.8rem;
            }
            
            .company-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
                gap: 0.5rem;
            }
            
            .company-item {
                padding: 0.5rem 0.7rem;
                font-size: 0.8rem;
                border-radius: 35px;
            }
            
            .core-enterprise {
                padding: 1.2rem 1rem;
                margin-top: 0.8rem;
            }
            
            .company-name {
                font-size: 1.2rem;
                white-space: normal;
                overflow: visible;
                text-overflow: clip;
                line-height: 1.3;
                margin-bottom: 0.8rem;
            }
            
            .company-description {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 0.8rem;
                display: block;
                height: auto;
                max-height: none;
                overflow: visible;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                padding: 0.6rem;
            }
            
            .contact-item.full-width {
                grid-column: span 1;
            }
            
            .contact-item {
                font-size: 0.75rem;
                gap: 0.3rem;
            }
            
            .contact-item .label {
                font-size: 13px;
                min-width: 60px;
            }
            
            .contact-item .value {
                font-size: 13px;
                word-break: break-word;
            }
            
            .address-value {
                white-space: normal;
                line-height: 1.4;
            }
            
            .company-image {
                display: none;
            }
            
            .article-section {
                padding: 1.2rem 1rem;
                margin: 1rem 0 0.8rem 0;
            }
            
            .article-section h2 {
                font-size: 1.4rem;
                margin-bottom: 1rem;
            }
            
            .article-item {
                padding: 1rem 1.2rem;
            }
            
            .article-title {
                font-size: 1rem;
                margin-bottom: 0.6rem;
            }
            
            .article-meta {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 0.5rem;
                font-size: 0.75rem;
            }
            
            .article-summary {
                font-size: 0.85rem;
                line-height: 1.5;
                -webkit-line-clamp: 2;
            }
        }

        @media (max-width: 550px) {
            .trap-left, .trap-right {
                position: static;
                width: 100%;
                height: auto;
                clip-path: none;
                border-radius: 0;
                margin-bottom: 0.6rem;
                padding: 1rem;
                justify-content: center;
            }
            .trap-right {
                margin-bottom: 0;
            }
            .intro-text-container {
                width: 100%;
                max-width: 100%;
                margin: 0;
                font-size: 0.95rem;
                padding: 0;
            }
            .section-title h1 {
                font-size: 1.5rem;
            }
            .company-name {
                font-size: 1.1rem;
            }
            .subsidiary-section h2 {
                font-size: 1.3rem;
            }
            .article-section h2 {
                font-size: 1.3rem;
            }
            
            /* çŒ«éœ²éˆ¥Î³ãƒ‚å¥¥å¾ãƒ‚ç”­å¾ãƒ‚å…‰â‚¬â’šîŸŠåº“â‚¬å¥½ã¢ç³•å“å¿™é¢…æ¥¼ç›²å½•è—´æ°“è‰—éˆ¥ï¿½ - ç›²èµ‚éˆ§îƒžîŸŠâˆ¨æ—Î»æºŒä¹…îž ã¢å¥½ã¢å˜Žã£ã¢å˜Žî€¢ãƒ‚ç³•â‚¬æ¯­ãƒ…æ’€ï¿½ */
            .company-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.4rem;
            }
            
            .company-item {
                padding: 0.45rem 0.6rem;
                font-size: 0.75rem;
                border-radius: 28px;
                white-space: normal;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                line-height: 1.2;
                height: auto;
                min-height: 2.4em;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .core-enterprise {
                padding: 1rem 0.8rem;
            }
            
            .company-description {
                font-size: 13px;
                line-height: 1.6;
            }
            
            .contact-item .label {
                font-size: 12px;
                min-width: 55px;
            }
            
            .contact-item .value {
                font-size: 12px;
            }
            
            .article-item {
                padding: 0.9rem 1rem;
            }
            
            .article-title {
                font-size: 0.95rem;
            }
            
            .article-summary {
                font-size: 0.8rem;
                -webkit-line-clamp: 2;
            }
            
            .article-meta {
                gap: 0.4rem;
                font-size: 0.7rem;
            }
        }

        @media (max-width: 400px) {
            .company-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .company-item {
                font-size: 0.7rem;
                padding: 0.4rem 0.5rem;
                border-radius: 24px;
                white-space: normal;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                line-height: 1.2;
                height: auto;
                min-height: 2.4em;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .section-title h1 {
                font-size: 1.3rem;
            }
            
            .company-description {
                font-size: 12px;
                line-height: 1.5;
            }
            
            .contact-item {
                font-size: 0.7rem;
            }
            
            .contact-item .label {
                font-size: 11px;
                min-width: 50px;
            }
            
            .contact-item .value {
                font-size: 11px;
            }
            
            .article-title {
                font-size: 0.9rem;
            }
            
            .article-summary {
                font-size: 0.75rem;
            }
        }