/* CSS Variables and Theme Defaults scoped to the widget */
.yuanhang-about-us-container-08630d63 {
    --navy-primary: #062B4F;
    --navy-dark: #031B30;
    --navy-secondary: #0B3A60;
    --accent-orange: #F97316;
    --accent-orange-hover: #EA580C;
    --white: #FFFFFF;
    --light-bg: #F5F7FA;
    --dark-text: #1F2937;
    --muted-text: #64748B;
    --light-border: #D9E0E7;
    --max-width: 1200px;
    --font-family: 'Poppins', sans-serif;

    font-family: var(--font-family);
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Common Layout Wrappers */
.yh-inner-wrapper-08630d63 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Typography Helpers */
.yh-eyebrow-08630d63 {
    display: inline-block;
    color: var(--navy-secondary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.yh-eyebrow-center-08630d63 {
    display: block;
    text-align: center;
    color: var(--navy-secondary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.yh-eyebrow-light-08630d63 {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.yh-orange-text-08630d63 {
    color: var(--accent-orange) !important;
}

.yh-section-title-08630d63 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy-dark);
    margin: 0 0 24px 0;
}
.yh-section-title-center-08630d63 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy-dark);
    text-align: center;
    margin: 0 0 24px 0;
}
.yh-section-title-light-08630d63 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 24px 0;
}

/* SECTION 1: ABOUT HERO */
.yh-hero-08630d63 {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
}
.yh-hero-content-08630d63 {
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}
.yh-breadcrumbs-08630d63 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 16px;
    font-weight: 500;
}
.yh-breadcrumbs-08630d63 a {
    color: #D5DEE7;
    text-decoration: none;
    transition: color 0.3s;
}
.yh-breadcrumbs-08630d63 a:hover {
    color: var(--accent-orange);
}
.yh-breadcrumb-separator-08630d63 {
    color: #8A9CAE;
}
.yh-active-breadcrumb-08630d63 {
    color: var(--white);
}
.yh-hero-title-08630d63 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 12px 0;
}
.yh-hero-desc-08630d63 {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #E2E8F0;
}

/* SECTION 2: WHO WE ARE */
.yh-who-we-are-08630d63 {
    padding: 80px 0;
    background: var(--white);
}
.yh-who-grid-08630d63 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.yh-paragraph-strong-08630d63 {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 16px;
}
.yh-paragraph-muted-08630d63 {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-text);
    margin-bottom: 30px;
}
.yh-btn-primary-08630d63 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
}
.yh-btn-primary-08630d63:hover {
    background-color: var(--accent-orange-hover);
    color: var(--white);
}
.yh-btn-arrow-08630d63 {
    font-size: 16px;
    line-height: 1;
}

.yh-who-image-container-08630d63 {
    position: relative;
    display: flex;
    flex-direction: column;
}
.yh-who-img-08630d63 {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
/* Benefit list strip below image */
.yh-benefit-strip-08630d63 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 16px 8px;
    margin-top: -30px;
    align-self: center;
    width: 90%;
    z-index: 10;
}
.yh-benefit-strip-item-08630d63 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4px;
    border-right: 1px solid var(--light-border);
}
.yh-benefit-strip-item-08630d63:last-child {
    border-right: none;
}
.yh-benefit-strip-icon-08630d63 {
    color: var(--navy-primary);
    font-size: 20px;
    margin-bottom: 6px;
}
.yh-benefit-strip-icon-08630d63 svg {
    width: 20px;
    height: 20px;
    fill: var(--navy-primary);
}
.yh-benefit-strip-title-08630d63 {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy-dark);
}

/* SECTION 3: MISSION & VISION */
.yh-mission-vision-08630d63 {
    background-color: #062B4F;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.yh-mv-grid-08630d63 {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.yh-mv-card-08630d63 {
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.yh-mv-icon-08630d63 {
    color: var(--accent-orange);
    font-size: 36px;
}
.yh-mv-icon-08630d63 svg {
    width: 36px;
    height: 36px;
    fill: var(--accent-orange);
}
.yh-mv-title-08630d63 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}
.yh-mv-desc-08630d63 {
    font-size: 15px;
    line-height: 1.6;
    color: #D5DEE7;
    margin: 0;
}
.yh-mv-center-img-wrapper-08630d63 {
    display: flex;
    justify-content: center;
    position: relative;
}
.yh-mv-center-img-08630d63 {
    width: 100%;
    max-width: 420px;
    object-fit: contain;
}

/* SECTION 4: OUR VALUES + STRENGTH IN NUMBERS */
.yh-values-numbers-08630d63 {
    padding: 80px 0;
    background: var(--white);
}
.yh-val-num-grid-08630d63 {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
}
.yh-values-list-08630d63 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}
.yh-value-item-08630d63 {
    display: flex;
    gap: 16px;
}
.yh-value-icon-08630d63 {
    color: var(--navy-secondary);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.yh-value-icon-08630d63 svg {
    width: 20px;
    height: 20px;
    fill: var(--navy-secondary);
}
.yh-value-title-08630d63 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0 0 4px 0;
}
.yh-value-desc-08630d63 {
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted-text);
    margin: 0;
}

/* Strength in Numbers right side cards grid */
.yh-stats-grid-08630d63 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.yh-stat-card-08630d63 {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.yh-stat-card-08630d63:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.yh-stat-icon-08630d63 {
    color: var(--navy-primary);
    font-size: 28px;
    margin-bottom: 12px;
}
.yh-stat-icon-08630d63 svg {
    width: 28px;
    height: 28px;
    fill: var(--navy-primary);
}
.yh-stat-title-08630d63 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0 0 12px 0;
}
.yh-stat-divider-08630d63 {
    width: 30px;
    height: 2px;
    background-color: var(--accent-orange);
    margin: 0 auto 12px auto;
}
.yh-stat-desc-08630d63 {
    font-size: 13px;
    color: var(--muted-text);
    margin: 0;
    line-height: 1.4;
}

/* SECTION 5: PROFESSIONAL TEAM */
.yh-professional-team-08630d63 {
    background-color: var(--navy-dark);
}
.yh-team-wrapper-08630d63 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.yh-team-left-image-08630d63 {
    flex: 1 1 50%;
    min-height: 480px;
    position: relative;
}
.yh-team-img-08630d63 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.yh-team-right-content-08630d63 {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    padding: 80px 40px;
}
.yh-team-content-inner-08630d63 {
    max-width: 540px;
    margin-left: 40px;
}
.yh-team-desc-08630d63 {
    font-size: 15px;
    line-height: 1.6;
    color: #D5DEE7;
    margin-bottom: 30px;
}
.yh-team-features-list-08630d63 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.yh-team-feature-item-08630d63 {
    display: flex;
    align-items: center;
    gap: 12px;
}
.yh-team-feature-icon-08630d63 {
    color: var(--accent-orange);
    font-size: 18px;
    flex-shrink: 0;
}
.yh-team-feature-icon-08630d63 svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-orange);
}
.yh-team-feature-title-08630d63 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

/* SECTION 6: WHY CHOOSE US */
.yh-why-choose-us-08630d63 {
    padding: 80px 0;
    background: var(--light-bg);
}
.yh-why-header-08630d63 {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.yh-why-grid-08630d63 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.yh-why-card-08630d63 {
    background: var(--white);
    border-radius: 8px;
    padding: 35px 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.015);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
}
.yh-why-card-08630d63:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    border-bottom: 3px solid var(--accent-orange);
}
.yh-why-card-icon-08630d63 {
    color: var(--navy-primary);
    font-size: 32px;
    margin-bottom: 20px;
}
.yh-why-card-icon-08630d63 svg {
    width: 32px;
    height: 32px;
    fill: var(--navy-primary);
}
.yh-why-card-title-08630d63 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0 0 12px 0;
}
.yh-why-card-desc-08630d63 {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-text);
    margin: 0;
}

/* ==========================================
   TABLET RESPONSIVE (1024px and below)
   ========================================== */
@media (max-width: 1024px) {
    .yh-inner-wrapper-08630d63 {
        padding: 0 30px;
    }
    .yh-hero-title-08630d63 {
        font-size: 38px;
    }
    .yh-section-title-08630d63,
    .yh-section-title-center-08630d63,
    .yh-section-title-light-08630d63 {
        font-size: 32px;
    }
    .yh-who-grid-08630d63 {
        gap: 30px;
    }
    .yh-who-img-08630d63 {
        height: 320px;
    }
    .yh-benefit-strip-08630d63 {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        margin-top: -20px;
    }
    .yh-benefit-strip-item-08630d63 {
        border-right: none;
        border-bottom: 1px solid var(--light-border);
        padding: 10px 4px;
    }
    .yh-benefit-strip-item-08630d63:nth-child(2n) {
        border-right: none;
    }
    .yh-benefit-strip-item-08630d63:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .yh-mv-grid-08630d63 {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .yh-mv-card-08630d63 {
        align-items: center;
    }
    .yh-mv-center-img-wrapper-08630d63 {
        order: -1;
    }
    .yh-val-num-grid-08630d63 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .yh-team-left-image-08630d63,
    .yh-team-right-content-08630d63 {
        flex: 1 1 100%;
    }
    .yh-team-left-image-08630d63 {
        min-height: 380px;
    }
    .yh-team-right-content-08630d63 {
        padding: 50px 30px;
    }
    .yh-team-content-inner-08630d63 {
        max-width: 100%;
        margin-left: 0;
    }
    .yh-why-grid-08630d63 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   MOBILE RESPONSIVE (767px and below)
   ========================================== */
@media (max-width: 767px) {
    .yh-inner-wrapper-08630d63 {
        padding: 0 20px;
    }
    .yh-hero-08630d63 {
        height: auto;
        padding: 60px 0;
    }
    .yh-hero-title-08630d63 {
        font-size: 32px;
    }
    .yh-hero-desc-08630d63 {
        font-size: 14px;
    }
    .yh-section-title-08630d63,
    .yh-section-title-center-08630d63,
    .yh-section-title-light-08630d63 {
        font-size: 26px;
    }
    .yh-who-grid-08630d63 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .yh-who-left-08630d63 {
        order: 1;
    }
    .yh-who-right-08630d63 {
        order: 2;
    }
    .yh-who-img-08630d63 {
        height: 250px;
    }
    .yh-benefit-strip-08630d63 {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 15px;
        box-shadow: none;
        border: 1px solid var(--light-border);
    }
    .yh-benefit-strip-item-08630d63 {
        padding: 8px 4px;
    }
    .yh-stats-grid-08630d63 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .yh-stat-card-08630d63 {
        padding: 20px 10px;
    }
    .yh-stat-title-08630d63 {
        font-size: 14px;
    }
    .yh-why-grid-08630d63 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .yh-why-card-08630d63 {
        padding: 25px 16px;
    }
}
