
    /* --- V13.3 Layout Styles (Max Pull Up & Full Width) --- */
    .fuji-v13-container {
        width: 92%;                 /* Container Width: 92% of screen */
        max-width: 1600px;
        margin: 0 auto;
        
        /* UPDATED: Significantly increased pull-up */
        margin-top: -120px;         /* 这里的数值控制上移距离，-120px 提升幅度很大 */
        position: relative;         
        z-index: 5;                 /* Ensure it floats above */
        background-color: #fff;     /* White background to cover the gap */
        
        /* Internal Spacing */
        padding-top: 60px;          /* Increased top padding to balance the pull-up */
        padding-bottom: 30px;
        text-align: center;
        box-sizing: border-box;
        border-radius: 8px;
    }

    .fuji-v13-title {
        /* Title Font Settings */
        font-family: 'Oswald', 'Oswald-Regular', 'Impact', 'Arial Narrow', sans-serif !important;
        font-size: 40px;
        color: #333333;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 20px;
        text-transform: capitalize;
        letter-spacing: 0.5px;
    }

    /* --- Subtitle (Full Width Fix) --- */
    .fuji-v13-subtitle {
        font-family: 'Open Sans', 'Arial', sans-serif !important;
        font-size: 16px;
        color: #555555;
        line-height: 1.6;
        margin: 0 auto;
        
        /* UPDATED: Force full width expansion */
        width: 100%;               /* Force 100% width */
        max-width: none;           /* Remove any width restriction */
        display: block;            /* Ensure block display */
    }
    
    /* Bold Keyword Style */
    .fuji-v13-subtitle strong {
        color: #333333;
        font-weight: 700;
    }

    /* --- Mobile Optimization --- */
    @media screen and (max-width: 768px) {
        .fuji-v13-container {
            width: 96%;
            margin-top: -50px;     /* Less extreme pull-up on mobile */
            padding-top: 40px;
            padding-bottom: 20px;
        }
        .fuji-v13-title {
            font-size: 28px !important;
        }
        .fuji-v13-subtitle {
            font-size: 14px !important;
        }
    }
