/* Strictly scoped classes with !important */
.xinghe-process-cta-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 20px !important;
}

.xinghe-process-section {
    background: #ffffff !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    border-top: 4px solid #0E386F !important;
}

.xinghe-section-title {
    color: #0E386F !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid rgba(14, 56, 111, 0.15) !important;
    font-size: 1.75rem !important;
}

.xinghe-process-steps {
    position: relative !important;
    padding-left: 60px !important;
}

.xinghe-process-steps:before {
    content: '' !important;
    position: absolute !important;
    left: 30px !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 2px !important;
    background: #0E386F !important;
    opacity: 0.2 !important;
}

.xinghe-step {
    position: relative !important;
    margin-bottom: 25px !important;
    padding-bottom: 25px !important;
    border-bottom: 1px dashed #e0e0e0 !important;
}

.xinghe-step-number {
    position: absolute !important;
    left: -60px !important;
    top: 0 !important;
    width: 40px !important;
    height: 40px !important;
    background: #0E386F !important;
    color: white !important;
    border-radius: 50% !important;
    text-align: center !important;
    line-height: 40px !important;
    font-weight: bold !important;
}

.xinghe-active .xinghe-step-number {
    background: #1a4b8c !important; /* Darker blue for active state */
}

.xinghe-step-content h3 {
    color: #0E386F !important;
    margin: 0 0 10px 0 !important;
    font-size: 1.1rem !important;
}

.xinghe-active .xinghe-step-content h3 {
    color: #1a4b8c !important;
}

.xinghe-step-content p {
    color: #6c757d !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
}

/* CTA Section */
.xinghe-cta-section {
    background: linear-gradient(135deg, #0E386F 0%, #1a4b8c 100%) !important;
    padding: 40px !important;
    text-align: center !important;
    border-radius: 8px !important;
    color: white !important;
}

.xinghe-cta-section h2 {
    margin: 0 0 15px 0 !important;
    font-size: 2rem !important;
}

.xinghe-cta-text {
    font-size: 1.15rem !important;
    margin-bottom: 30px !important;
    opacity: 0.9 !important;
}

.xinghe-cta-buttons {
    display: inline-block !important;
}

.xinghe-btn {
    display: inline-block !important;
    padding: 12px 25px !important;
    margin: 0 10px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.xinghe-btn-primary {
    background: white !important;
    color: #0E386F !important;
}

.xinghe-btn-secondary {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .xinghe-process-steps {
        padding-left: 50px !important;
    }
    
    .xinghe-step-number {
        left: -50px !important;
        width: 35px !important;
        height: 35px !important;
        line-height: 35px !important;
    }
    
    .xinghe-btn {
        display: block !important;
        margin: 10px auto !important;
        max-width: 250px !important;
    }
}