.his-banner {
    position: relative;
    width: 100%;
    margin-top: 80px;
}

.his-banner>img {
    width: 100%;
    height: auto;
    display: block;
}

.his-banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: var(--color-text-primary);
}

.his-banner-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.his-banner-subtitle {
    font-size: 44px;
    margin-bottom: var(--space-lg);
    color: var(--color-text-secondary);
    font-weight: 500;
}

.his-banner-desc {
    font-size: var(--text-xl);
    opacity: 0.6;
}

.his-solution {
    background: var(--color-white);
    padding: var(--space-5xl) 0;
}

.his-solution .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.his-solution .section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #6d7280;
    border-radius: 100px;
    margin: var(--space-lg) auto 0;
}

.his-solution-content {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
}

.his-solution-text {
    flex: 1;
}

.his-solution-text p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    text-align: justify;
}

.his-solution-text p:last-child {
    margin-bottom: 0;
}

.his-solution-image {
    flex: 1;
}

.his-solution-image img {
    width: 100%;
    height: auto;
}


.his-features {
    background: var(--color-white);
    padding: var(--space-5xl) 0;
}

.his-features .section-header {
    text-align: center;
    margin-bottom: var(--space-5xl);
}

.his-features .section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #6d7280;
    border-radius: 100px;
    margin: var(--space-lg) auto 0;
}

.his-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-5xl);
    margin-bottom: var(--space-5xl);
}

.his-feature-item:last-child {
    margin-bottom: 0;
}

.his-feature-text {
    flex: 1;
}

.his-feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.his-feature-header.reverse {
    justify-content: flex-start;
}

.his-feature-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.his-feature-number {
    font-size: 64px;
    font-weight: 300;
    color: #e5e7eb;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
}

.his-feature-header.reverse .his-feature-number {
    margin-right: var(--space-lg);
}

.his-feature-divider {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin-bottom: var(--space-lg);
}

.his-feature-desc {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text-secondary);
    text-align: justify;
}

.his-feature-image {
    flex: 1.2;
}

.his-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}