
    body {
        font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f9f9fa;
        margin: 0;
        padding: 0;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    /* Project Header */
    .project-header {
        text-align: center;
        padding: 60px 0 40px;
        background-color: #fff;
        border-bottom: 1px solid #eaeaea;
    }
    .project-header h1 {
        font-size: 32px;
        color: #1a1a1a;
        margin: 0 0 15px;
        letter-spacing: 1px;
    }
    .project-header p {
        color: #666;
        max-width: 850px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.8;
    }
    /* Core Solutions */
    .solutions-section {
        padding: 60px 0;
    }
    .section-title {
        text-align: center;
        font-size: 28px;
        margin: 0 0 50px;
        color: #1a1a1a;
        position: relative;
    }
    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #cc0000;
        margin: 15px auto 0;
    }
    /* Feature Row */
    .feature-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        margin-bottom: 50px;
        background: #fff;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    .feature-row.reverse {
        flex-direction: row-reverse;
    }
    .feature-text {
        flex: 1;
        padding: 0 10px;
    }
    .feature-text h3 {
        font-size: 22px;
        color: #cc0000;
        margin: 0 0 18px;
        line-height: 1.4;
    }
    .feature-text p {
        margin: 0 0 15px;
        color: #555;
        line-height: 1.8;
    }
    .feature-text p:last-child {
        margin-bottom: 0;
    }
    .feature-text .highlight {
        font-weight: 600;
        color: #1a1a1a;
    }
    .feature-image {
        flex: 1;
        text-align: center;
    }
    .feature-image img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        display: block;
        border-radius: 6px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    .feature-image img:hover {
        transform: scale(1.02);
    }
    /* Project Value */
    .value-section {
        background-color: #f0f2f5;
        color: #2c3e50;
        padding: 60px 0;
        border-top: 1px solid #e1e4e8;
    }
    .value-section .section-title {
        color: #1a1a1a;
    }
    .value-section .section-title::after {
        background-color: #4a5568;
    }
    .value-grid {
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }
    .value-card {
        background: #fff;
        padding: 35px 30px;
        border-radius: 8px;
        flex: 1;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
        border: 1px solid #e2e8f0;
    }
    .value-card h4 {
        font-size: 18px;
        margin: 0 0 15px;
        border-bottom: 1px solid #edf2f7;
        padding-bottom: 12px;
        color: #1a202c;
    }
    .value-card p {
        font-size: 15px;
        line-height: 1.7;
        color: #4a5568;
        margin: 0;
    }
    /* Responsive */
    @media (max-width: 768px) {
        .project-header {
            padding: 40px 0 30px;
        }
        .project-header h1 {
            font-size: 26px;
        }
        .solutions-section,
        .value-section {
            padding: 40px 0;
        }
        .feature-row,
        .feature-row.reverse {
            flex-direction: column;
            padding: 20px;
            gap: 25px;
        }
        .feature-text {
            padding: 0;
        }
        .feature-image {
            width: 100%;
        }
        .value-grid {
            flex-direction: column;
        }
    }
